2018-07-17 21:11:16 +01:00
|
|
|
{ stdenv, fetchFromGitHub, qt5, poppler, zlib, pkgconfig}:
|
2014-04-22 22:26:27 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "texstudio";
|
2018-07-08 00:16:46 +01:00
|
|
|
version = "2.12.10";
|
2014-04-22 22:26:27 +01:00
|
|
|
name = "${pname}-${version}";
|
|
|
|
|
2018-04-10 19:19:52 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "${pname}-org";
|
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
2018-07-08 00:16:46 +01:00
|
|
|
sha256 = "0mkx7fym41hwd7cdg31ji2hxlv3gxx0sa6bnap51ryxmq8sxdjhq";
|
2014-04-22 22:26:27 +01:00
|
|
|
};
|
|
|
|
|
2018-02-10 00:10:14 +00:00
|
|
|
nativeBuildInputs = [ qt5.qmake pkgconfig ];
|
2018-07-17 21:11:16 +01:00
|
|
|
buildInputs = [ qt5.qtbase qt5.qtscript qt5.qtsvg poppler zlib ];
|
2014-04-22 22:26:27 +01:00
|
|
|
|
2016-04-17 00:27:11 +01:00
|
|
|
qmakeFlags = [ "NO_APPDATA=True" ];
|
2014-04-22 22:26:27 +01:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2014-04-23 11:09:25 +01:00
|
|
|
description = "TeX and LaTeX editor";
|
|
|
|
longDescription=''
|
2016-06-20 15:47:01 +01:00
|
|
|
Fork of TeXMaker, this editor is a full fledged IDE for
|
2014-04-23 11:09:25 +01:00
|
|
|
LaTeX editing with completion, structure viewer, preview,
|
|
|
|
spell checking and support of any compilation chain.
|
|
|
|
'';
|
2017-04-09 21:17:55 +01:00
|
|
|
homepage = http://texstudio.sourceforge.net;
|
2014-04-22 22:26:27 +01:00
|
|
|
license = licenses.gpl2Plus;
|
2018-02-10 00:10:14 +00:00
|
|
|
platforms = [ "x86_64-linux" ];
|
2014-04-23 13:37:00 +01:00
|
|
|
maintainers = with maintainers; [ cfouche ];
|
2014-04-22 22:26:27 +01:00
|
|
|
};
|
|
|
|
}
|