nixpkgs/pkgs/applications/editors/texstudio/default.nix

31 lines
894 B
Nix
Raw Normal View History

2016-04-16 23:27:11 +00:00
{ stdenv, fetchurl, qt4, qmake4Hook, poppler_qt4, zlib, pkgconfig}:
stdenv.mkDerivation rec {
pname = "texstudio";
2016-10-31 18:23:48 +00:00
version = "2.11.2";
name = "${pname}-${version}";
altname="Texstudio";
src = fetchurl {
url = "mirror://sourceforge/texstudio/${name}.tar.gz";
2016-10-31 18:23:48 +00:00
sha256 = "1p6ja5y5902y814f3f5mafh0y8vj682ghrarx1pbm4r5ap8x9z82";
};
2016-04-16 23:27:11 +00:00
buildInputs = [ qt4 qmake4Hook poppler_qt4 zlib pkgconfig ];
2016-04-16 23:27:11 +00:00
qmakeFlags = [ "NO_APPDATA=True" ];
meta = with stdenv.lib; {
description = "TeX and LaTeX editor";
longDescription=''
2016-06-20 14:47:01 +00:00
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 ];
};
}