31 lines
906 B
Nix
31 lines
906 B
Nix
{ stdenv, fetchurl, qt4, qmake4Hook, poppler_qt4, zlib, pkgconfig}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "texstudio";
|
|
version = "2.11.0";
|
|
name = "${pname}-${version}";
|
|
altname="Texstudio";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/texstudio/${name}.tar.gz";
|
|
sha256 = "170e6d68952251e8c64589b0d147cb7692005e135cc6fc14579c6fd593f54307";
|
|
};
|
|
|
|
buildInputs = [ qt4 qmake4Hook poppler_qt4 zlib pkgconfig ];
|
|
|
|
qmakeFlags = [ "NO_APPDATA=True" ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "TeX and LaTeX editor";
|
|
longDescription=''
|
|
Fork of TeXMaker, this editor is a full fledged IDE for
|
|
LaTeX editing with completion, structure viewer, preview,
|
|
spell checking and support of any compilation chain.
|
|
'';
|
|
homepage = "http://texstudio.sourceforge.net/";
|
|
license = licenses.gpl2Plus;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ cfouche ];
|
|
};
|
|
}
|