diff --git a/pkgs/applications/editors/texstudio/default.nix b/pkgs/applications/editors/texstudio/default.nix new file mode 100644 index 00000000000..2a2d25ab3f7 --- /dev/null +++ b/pkgs/applications/editors/texstudio/default.nix @@ -0,0 +1,24 @@ +{ stdenv, fetchurl, qt, popplerQt4, phonon }: + +stdenv.mkDerivation rec { + pname = "texstudio"; + version = "2.7.0"; + name = "${pname}-${version}"; + altname="Texstudio"; + + src = fetchurl { + url = "mirror://sourceforge/texstudio/${altname} ${version}/${name}.tar.gz"; + sha1 = "0a5960689f2f9daef93391b96321ccc8c2e94c38"; + }; + + buildInputs = [ qt popplerQt4 phonon ]; + + preConfigure = "qmake -r PREFIX=$out"; + + meta = with stdenv.lib; { + description = "Fork of TeXMaker, this editor is a full fledged IDE for LaTeX editing with completion, structure viewer, preview and support of any compilation chain."; + homepage = "http://texstudio.sourceforge.net/"; + license = licenses.gpl2Plus; + platforms = platforms.linux; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 48341b9a89d..b63567029ea 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -2059,6 +2059,8 @@ let texmaker = callPackage ../applications/editors/texmaker { }; + texstudio = callPackage ../applications/editors/texstudio { qt = qt4; }; + tiled-qt = callPackage ../applications/editors/tiled-qt { qt = qt4; }; tinc = callPackage ../tools/networking/tinc { };