summary refs log tree commit diff
path: root/pkgs/applications/editors/notepadqq
diff options
context:
space:
mode:
authorThomas Tuegel <ttuegel@mailbox.org>2017-03-24 13:34:03 -0500
committerThomas Tuegel <ttuegel@mailbox.org>2017-03-25 08:49:39 -0500
commit84ed4737635c068e716a8fc286b081bfe5d1febc (patch)
tree2ebe4cf117a50fdb47c72da83f29a3de317862b6 /pkgs/applications/editors/notepadqq
parent8526c87e24219e20fbdc6f280ad5b7a4d2661190 (diff)
downloadnixpkgs-84ed4737635c068e716a8fc286b081bfe5d1febc.tar
nixpkgs-84ed4737635c068e716a8fc286b081bfe5d1febc.tar.gz
nixpkgs-84ed4737635c068e716a8fc286b081bfe5d1febc.tar.bz2
nixpkgs-84ed4737635c068e716a8fc286b081bfe5d1febc.tar.lz
nixpkgs-84ed4737635c068e716a8fc286b081bfe5d1febc.tar.xz
nixpkgs-84ed4737635c068e716a8fc286b081bfe5d1febc.tar.zst
nixpkgs-84ed4737635c068e716a8fc286b081bfe5d1febc.zip
notepadqq: correct packaging errors and pin to Qt 5.6
Diffstat (limited to 'pkgs/applications/editors/notepadqq')
-rw-r--r--pkgs/applications/editors/notepadqq/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/applications/editors/notepadqq/default.nix b/pkgs/applications/editors/notepadqq/default.nix
index 0de33d6d194..b553e09ed5e 100644
--- a/pkgs/applications/editors/notepadqq/default.nix
+++ b/pkgs/applications/editors/notepadqq/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchgit, pkgconfig, which, qtbase }:
+{ stdenv, fetchgit, pkgconfig, which, qtbase, qtsvg, qttools, qtwebkit }:
 
 let
   version = "0.53.0";
@@ -12,11 +12,11 @@ in stdenv.mkDerivation {
   };
 
   nativeBuildInputs = [
-    pkgconfig which
+    pkgconfig which qttools
   ];
 
   buildInputs = [
-    qtbase.qtsvg qtbase.qtwebkit qtbase.qttools
+    qtbase qtsvg qtwebkit
   ];
 
   preConfigure = ''