summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorJörg Thalheim <joerg@thalheim.io>2020-01-15 10:57:34 +0000
committerJörg Thalheim <joerg@thalheim.io>2020-01-15 10:58:54 +0000
commit4d7da1d72db82a06d39e59893134dd6b92476fc1 (patch)
tree0bc419beb38b233cec4528972f73e4f2f661b2bf /pkgs
parente4bc7a1c1da34de677b26dc2b39f971a749f182c (diff)
downloadnixpkgs-4d7da1d72db82a06d39e59893134dd6b92476fc1.tar
nixpkgs-4d7da1d72db82a06d39e59893134dd6b92476fc1.tar.gz
nixpkgs-4d7da1d72db82a06d39e59893134dd6b92476fc1.tar.bz2
nixpkgs-4d7da1d72db82a06d39e59893134dd6b92476fc1.tar.lz
nixpkgs-4d7da1d72db82a06d39e59893134dd6b92476fc1.tar.xz
nixpkgs-4d7da1d72db82a06d39e59893134dd6b92476fc1.tar.zst
nixpkgs-4d7da1d72db82a06d39e59893134dd6b92476fc1.zip
nmapsi4: fix startup by adding wrapQtAppsHook
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/tools/security/nmap/qt.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/security/nmap/qt.nix b/pkgs/tools/security/nmap/qt.nix
index f873c475bbf..2dcd7fed0c4 100644
--- a/pkgs/tools/security/nmap/qt.nix
+++ b/pkgs/tools/security/nmap/qt.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchFromGitHub, cmake, pkgconfig, makeWrapper
+{ stdenv, fetchFromGitHub, cmake, pkgconfig, wrapQtAppsHook
 , dnsutils, nmap
 , qtbase, qtscript, qtwebengine }:
 
@@ -13,7 +13,7 @@ stdenv.mkDerivation rec {
     sha256 = "10wqyrjzmad1g7lqa65rymbkna028xbp4xcpj442skw8gyrs3994";
   };
 
-  nativeBuildInputs = [ cmake makeWrapper pkgconfig ];
+  nativeBuildInputs = [ cmake pkgconfig wrapQtAppsHook ];
 
   buildInputs = [ qtbase qtscript qtwebengine ];