forked from mirrors/nixpkgs
parent
ac1a531933
commit
9a2bd51a30
|
@ -1,4 +1,4 @@
|
|||
{ stdenv, fetchFromGitHub, fftw, qtbase }:
|
||||
{ stdenv, fetchFromGitHub, fftw, qtbase, qmakeHook }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "libkeyfinder-${version}";
|
||||
|
@ -11,7 +11,7 @@ stdenv.mkDerivation rec {
|
|||
owner = "ibsh";
|
||||
};
|
||||
|
||||
buildInputs = [ fftw qtbase ];
|
||||
buildInputs = [ fftw qtbase qmakeHook ];
|
||||
|
||||
postPatch = ''
|
||||
substituteInPlace LibKeyFinder.pro \
|
||||
|
@ -19,12 +19,6 @@ stdenv.mkDerivation rec {
|
|||
--replace "-stdlib=libc++" ""
|
||||
'';
|
||||
|
||||
configurePhase = ''
|
||||
runHook preConfigure
|
||||
qmake
|
||||
runHook postConfigure
|
||||
'';
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
postInstall = ''
|
||||
|
|
Loading…
Reference in a new issue