summary refs log tree commit diff
path: root/pkgs/applications/editors/texmaker
diff options
context:
space:
mode:
authorChaddaï Fouché <chaddai.fouche@gmail.com>2015-05-05 20:30:13 +0000
committerChaddaï Fouché <chaddai.fouche@gmail.com>2015-05-05 20:30:13 +0000
commitfc82638b33a653c5eee807e2f715666edb1e7c6f (patch)
tree5d197349155cc4ebacf75122ca4f2d0e4a86bd4c /pkgs/applications/editors/texmaker
parent21d57e33c878b7810e98bf804aeb8a16e5ead389 (diff)
downloadnixpkgs-fc82638b33a653c5eee807e2f715666edb1e7c6f.tar
nixpkgs-fc82638b33a653c5eee807e2f715666edb1e7c6f.tar.gz
nixpkgs-fc82638b33a653c5eee807e2f715666edb1e7c6f.tar.bz2
nixpkgs-fc82638b33a653c5eee807e2f715666edb1e7c6f.tar.lz
nixpkgs-fc82638b33a653c5eee807e2f715666edb1e7c6f.tar.xz
nixpkgs-fc82638b33a653c5eee807e2f715666edb1e7c6f.tar.zst
nixpkgs-fc82638b33a653c5eee807e2f715666edb1e7c6f.zip
Update TexMaker from 4.1.1 to 4.4.1
Diffstat (limited to 'pkgs/applications/editors/texmaker')
-rw-r--r--pkgs/applications/editors/texmaker/default.nix7
1 files changed, 3 insertions, 4 deletions
diff --git a/pkgs/applications/editors/texmaker/default.nix b/pkgs/applications/editors/texmaker/default.nix
index 4df2dc8cac1..04ebf195108 100644
--- a/pkgs/applications/editors/texmaker/default.nix
+++ b/pkgs/applications/editors/texmaker/default.nix
@@ -2,20 +2,19 @@
 
 stdenv.mkDerivation rec {
   pname = "texmaker";
-  version = "4.1.1";
+  version = "4.4.1";
   name = "${pname}-${version}";
 
   src = fetchurl {
     url = "http://www.xm1math.net/texmaker/${name}.tar.bz2";
-    sha256 = "1h5rxdq6f05wk3lnlw96fxwrb14k77cx1mwy648127h2c8nsgw4z";
+    sha256 = "1d5lb4sibdhvzgfr0zi48j92b4acvvvdy2biqi3jzjdnzy9r94w0";
   };
 
   buildInputs = [ qt4 poppler_qt4 zlib ];
-
   nativeBuildInputs = [ pkgconfig poppler ];
+  NIX_CFLAGS_COMPILE="-I${poppler}/include/poppler";
 
   preConfigure = ''
-    export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -I$(echo ${poppler}/include/poppler/) " # for poppler-config.h
     qmake PREFIX=$out DESKTOPDIR=$out/share/applications ICONDIR=$out/share/pixmaps texmaker.pro
   '';