summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorNikolay Amiantov <ab@fmap.me>2016-04-17 02:52:55 +0300
committerNikolay Amiantov <ab@fmap.me>2016-04-20 18:55:56 +0300
commitea56bb7331221efa6be1bc290cd6ee8b6be17536 (patch)
tree2b6af31cf5ea47c35f9c3e51209075baf86706fd /pkgs/tools
parent6adce0a785b2876f48a9d73c02251b101f69c30b (diff)
downloadnixpkgs-ea56bb7331221efa6be1bc290cd6ee8b6be17536.tar
nixpkgs-ea56bb7331221efa6be1bc290cd6ee8b6be17536.tar.gz
nixpkgs-ea56bb7331221efa6be1bc290cd6ee8b6be17536.tar.bz2
nixpkgs-ea56bb7331221efa6be1bc290cd6ee8b6be17536.tar.lz
nixpkgs-ea56bb7331221efa6be1bc290cd6ee8b6be17536.tar.xz
nixpkgs-ea56bb7331221efa6be1bc290cd6ee8b6be17536.tar.zst
nixpkgs-ea56bb7331221efa6be1bc290cd6ee8b6be17536.zip
rockbox-utility: move to qmake4Hook
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/misc/rockbox-utility/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/tools/misc/rockbox-utility/default.nix b/pkgs/tools/misc/rockbox-utility/default.nix
index c9c0cf6949f..54a6b0309b0 100644
--- a/pkgs/tools/misc/rockbox-utility/default.nix
+++ b/pkgs/tools/misc/rockbox-utility/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, libusb1, qt4 }:
+{ stdenv, fetchurl, libusb1, qt4, qmake4Hook }:
 
 stdenv.mkDerivation  rec {
   name = "rockbox-utility-${version}";
@@ -10,10 +10,10 @@ stdenv.mkDerivation  rec {
   };
 
   buildInputs = [ libusb1 qt4 ];
+  nativeBuildInputs = [ qmake4Hook ];
 
-  preBuild = ''
+  preConfigure = ''
     cd rbutil/rbutilqt
-    qmake
   '';
 
   installPhase = ''