3
0
Fork 0
forked from mirrors/nixpkgs

rapcad: move to qmakeHook

This reverts commit 38d5c07b14.
This commit is contained in:
Nikolay Amiantov 2016-04-16 22:59:19 +03:00
parent 0ca9ad08b4
commit 6995d01939

View file

@ -1,5 +1,5 @@
{ stdenv, fetchgit, cgal, boost, gmp, mpfr, flex, bison, dxflib, readline
, qtbase
, qtbase, qmakeHook, mesa_glu
}:
stdenv.mkDerivation rec {
@ -12,14 +12,7 @@ stdenv.mkDerivation rec {
sha256 = "15c18jvgbwyrfhv7r35ih0gzx35vjlsbi984h1sckgh2z17hjq8l";
};
buildInputs = [ qtbase cgal boost gmp mpfr flex bison dxflib readline ];
configurePhase = ''
runHook preConfigure
qmake
sed -e "s@/usr/@$out/@g" -i $(find . -name Makefile)
runHook postConfigure
'';
buildInputs = [ qtbase qmakeHook cgal boost gmp mpfr flex bison dxflib readline mesa_glu ];
meta = {
license = stdenv.lib.licenses.gpl3;