summary refs log tree commit diff
path: root/pkgs/applications/editors/texmaker
diff options
context:
space:
mode:
authorThomas Tuegel <ttuegel@gmail.com>2015-04-02 11:44:13 -0500
committerThomas Tuegel <ttuegel@gmail.com>2015-04-02 11:44:13 -0500
commite5b9a42aea6aa901d58839c502c94c091e995f81 (patch)
treeca677f2f7f139e90df70616df0d5c2ce4449f1ae /pkgs/applications/editors/texmaker
parent94eb519e190c1d6f8a908da542f1e6c184aaba35 (diff)
downloadnixpkgs-e5b9a42aea6aa901d58839c502c94c091e995f81.tar
nixpkgs-e5b9a42aea6aa901d58839c502c94c091e995f81.tar.gz
nixpkgs-e5b9a42aea6aa901d58839c502c94c091e995f81.tar.bz2
nixpkgs-e5b9a42aea6aa901d58839c502c94c091e995f81.tar.lz
nixpkgs-e5b9a42aea6aa901d58839c502c94c091e995f81.tar.xz
nixpkgs-e5b9a42aea6aa901d58839c502c94c091e995f81.tar.zst
nixpkgs-e5b9a42aea6aa901d58839c502c94c091e995f81.zip
texmaker: fix poppler_qt4 name
Diffstat (limited to 'pkgs/applications/editors/texmaker')
-rw-r--r--pkgs/applications/editors/texmaker/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/editors/texmaker/default.nix b/pkgs/applications/editors/texmaker/default.nix
index 16335a55065..4df2dc8cac1 100644
--- a/pkgs/applications/editors/texmaker/default.nix
+++ b/pkgs/applications/editors/texmaker/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, qt4, popplerQt4, zlib, pkgconfig, poppler}:
+{ stdenv, fetchurl, qt4, poppler_qt4, zlib, pkgconfig, poppler}:
 
 stdenv.mkDerivation rec {
   pname = "texmaker";
@@ -10,7 +10,7 @@ stdenv.mkDerivation rec {
     sha256 = "1h5rxdq6f05wk3lnlw96fxwrb14k77cx1mwy648127h2c8nsgw4z";
   };
 
-  buildInputs = [ qt4 popplerQt4 zlib ];
+  buildInputs = [ qt4 poppler_qt4 zlib ];
 
   nativeBuildInputs = [ pkgconfig poppler ];