2016-04-17 01:27:11 +02:00
|
|
|
{ stdenv, fetchurl, qt4, qmake4Hook, poppler_qt4, zlib, pkgconfig}:
|
2014-04-22 23:26:27 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "texstudio";
|
2017-11-23 10:50:17 +01:00
|
|
|
version = "2.12.6";
|
2014-04-22 23:26:27 +02:00
|
|
|
name = "${pname}-${version}";
|
|
|
|
altname="Texstudio";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2014-04-23 11:58:54 +02:00
|
|
|
url = "mirror://sourceforge/texstudio/${name}.tar.gz";
|
2017-11-23 10:50:17 +01:00
|
|
|
sha256 = "18rxd7ra5k2f7s4c296b3v3pqhxjmfix9xpy9i1g4jm87ygqrbnd";
|
2014-04-22 23:26:27 +02:00
|
|
|
};
|
|
|
|
|
2017-04-09 22:17:55 +02:00
|
|
|
nativeBuildInputs = [ qmake4Hook pkgconfig ];
|
|
|
|
buildInputs = [ qt4 poppler_qt4 zlib ];
|
2014-04-22 23:26:27 +02:00
|
|
|
|
2016-04-17 01:27:11 +02:00
|
|
|
qmakeFlags = [ "NO_APPDATA=True" ];
|
2014-04-22 23:26:27 +02:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2014-04-23 12:09:25 +02:00
|
|
|
description = "TeX and LaTeX editor";
|
|
|
|
longDescription=''
|
2016-06-20 16:47:01 +02:00
|
|
|
Fork of TeXMaker, this editor is a full fledged IDE for
|
2014-04-23 12:09:25 +02:00
|
|
|
LaTeX editing with completion, structure viewer, preview,
|
|
|
|
spell checking and support of any compilation chain.
|
|
|
|
'';
|
2017-04-09 22:17:55 +02:00
|
|
|
homepage = http://texstudio.sourceforge.net;
|
2014-04-22 23:26:27 +02:00
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
platforms = platforms.linux;
|
2014-04-23 14:37:00 +02:00
|
|
|
maintainers = with maintainers; [ cfouche ];
|
2014-04-22 23:26:27 +02:00
|
|
|
};
|
|
|
|
}
|