summary refs log tree commit diff
path: root/pkgs/applications/editors/texstudio
diff options
context:
space:
mode:
authorndowens <ndowens04@gmail.com>2017-04-09 15:17:55 -0500
committerndowens <ndowens04@gmail.com>2017-04-09 15:17:55 -0500
commit40e2e78d91334154e55d24e4c2274fc8d1599239 (patch)
tree4d8da7c08007d4067f07a990a24e5a7daaac34f0 /pkgs/applications/editors/texstudio
parentfaa5d22231063783959473594e3932f8d337a7ec (diff)
downloadnixlib-40e2e78d91334154e55d24e4c2274fc8d1599239.tar
nixlib-40e2e78d91334154e55d24e4c2274fc8d1599239.tar.gz
nixlib-40e2e78d91334154e55d24e4c2274fc8d1599239.tar.bz2
nixlib-40e2e78d91334154e55d24e4c2274fc8d1599239.tar.lz
nixlib-40e2e78d91334154e55d24e4c2274fc8d1599239.tar.xz
nixlib-40e2e78d91334154e55d24e4c2274fc8d1599239.tar.zst
nixlib-40e2e78d91334154e55d24e4c2274fc8d1599239.zip
texstudio: 2.11.2 > 2.12.4
Diffstat (limited to 'pkgs/applications/editors/texstudio')
-rw-r--r--pkgs/applications/editors/texstudio/default.nix9
1 files changed, 5 insertions, 4 deletions
diff --git a/pkgs/applications/editors/texstudio/default.nix b/pkgs/applications/editors/texstudio/default.nix
index 89ae2e04eac0..52223dafeb7f 100644
--- a/pkgs/applications/editors/texstudio/default.nix
+++ b/pkgs/applications/editors/texstudio/default.nix
@@ -2,16 +2,17 @@
 
 stdenv.mkDerivation rec {
   pname = "texstudio";
-  version = "2.11.2";
+  version = "2.12.4";
   name = "${pname}-${version}";
   altname="Texstudio";
 
   src = fetchurl {
     url = "mirror://sourceforge/texstudio/${name}.tar.gz";
-    sha256 = "1p6ja5y5902y814f3f5mafh0y8vj682ghrarx1pbm4r5ap8x9z82";
+    sha256 = "03917faqyy0a1k6b86blc2fcards5a1819ydgkc4jlhwiaym4iyw";
   };
 
-  buildInputs = [ qt4 qmake4Hook poppler_qt4 zlib pkgconfig ];
+  nativeBuildInputs = [ qmake4Hook pkgconfig ];
+  buildInputs = [ qt4 poppler_qt4 zlib ];
 
   qmakeFlags = [ "NO_APPDATA=True" ];
 
@@ -22,7 +23,7 @@ stdenv.mkDerivation rec {
 	LaTeX editing with completion, structure viewer, preview,
 	spell checking and support of any compilation chain.
 	'';
-    homepage = "http://texstudio.sourceforge.net/";
+    homepage = http://texstudio.sourceforge.net;
     license = licenses.gpl2Plus;
     platforms = platforms.linux;
     maintainers = with maintainers; [ cfouche ];