summary refs log tree commit diff
diff options
context:
space:
mode:
authorThomas Tuegel <thomas.tuegel@runtimeverification.com>2020-09-07 10:37:48 -0500
committerThomas Tuegel <thomas.tuegel@runtimeverification.com>2020-09-07 10:50:10 -0500
commit0368d93a9e978b90ba844d83b292178e3a8c7574 (patch)
tree1df119527d6e4cc80429d303d3ecd4bdb47db475
parenta811e37d1c7bc6e0b68e7bf391fadd371db22850 (diff)
downloadnixpkgs-0368d93a9e978b90ba844d83b292178e3a8c7574.tar
nixpkgs-0368d93a9e978b90ba844d83b292178e3a8c7574.tar.gz
nixpkgs-0368d93a9e978b90ba844d83b292178e3a8c7574.tar.bz2
nixpkgs-0368d93a9e978b90ba844d83b292178e3a8c7574.tar.lz
nixpkgs-0368d93a9e978b90ba844d83b292178e3a8c7574.tar.xz
nixpkgs-0368d93a9e978b90ba844d83b292178e3a8c7574.tar.zst
nixpkgs-0368d93a9e978b90ba844d83b292178e3a8c7574.zip
qtikz: proper Qt dependencies
-rw-r--r--pkgs/applications/graphics/ktikz/default.nix9
1 files changed, 5 insertions, 4 deletions
diff --git a/pkgs/applications/graphics/ktikz/default.nix b/pkgs/applications/graphics/ktikz/default.nix
index 4ddc2074f2f..f817a332160 100644
--- a/pkgs/applications/graphics/ktikz/default.nix
+++ b/pkgs/applications/graphics/ktikz/default.nix
@@ -1,6 +1,7 @@
 { stdenv, fetchFromGitHub, fetchpatch
 , pkgconfig, wrapQtAppsHook
-, poppler, qt5, gnuplot
+, poppler, gnuplot
+, qmake, qtbase, qttools
 }:
 
 # This package only builds ktikz without KDE integration because KDE4 is
@@ -36,10 +37,10 @@ stdenv.mkDerivation rec {
     })
   ];
 
-  nativeBuildInputs = [ pkgconfig qt5.qttools qt5.qmake wrapQtAppsHook ];
-  QT_PLUGIN_PATH = "${qt5.qtbase}/${qt5.qtbase.qtPluginPrefix}";
+  nativeBuildInputs = [ pkgconfig qttools qmake wrapQtAppsHook ];
+  QT_PLUGIN_PATH = "${qtbase}/${qtbase.qtPluginPrefix}";
 
-  buildInputs = [ qt5.qtbase poppler ];
+  buildInputs = [ qtbase poppler ];
   enableParallelBuilding = true;
 
   qmakeFlags = [