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

32 lines
896 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, qt5, poppler, zlib, pkgconfig}:
stdenv.mkDerivation rec {
pname = "texstudio";
version = "2.12.16";
src = fetchFromGitHub {
owner = "${pname}-org";
repo = pname;
rev = version;
sha256 = "0ck65fvz6mzfpqdb1ndgyvgxdnslrwhdr1swgck4gaghcrgbg3gq";
};
2018-02-09 16:10:14 -08:00
nativeBuildInputs = [ qt5.qmake pkgconfig ];
buildInputs = [ qt5.qtbase qt5.qtscript qt5.qtsvg poppler zlib ];
2016-04-16 16:27:11 -07:00
qmakeFlags = [ "NO_APPDATA=True" ];
meta = with stdenv.lib; {
description = "TeX and LaTeX editor";
longDescription=''
2016-06-20 07:47:01 -07: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.
'';
2017-04-09 13:17:55 -07:00
homepage = http://texstudio.sourceforge.net;
license = licenses.gpl2Plus;
2018-02-09 16:10:14 -08:00
platforms = [ "x86_64-linux" ];
maintainers = with maintainers; [ cfouche ];
};
}