Merge pull request #17043 from womfoo/fix/qmake4Hook-builds
reintroduce qmake .pro files after qmake4Hook changes
This commit is contained in:
commit
aefd8c420c
@ -16,6 +16,8 @@ stdenv.mkDerivation {
|
|||||||
|
|
||||||
nativeBuildInputs = [ qmake4Hook ];
|
nativeBuildInputs = [ qmake4Hook ];
|
||||||
|
|
||||||
|
qmakeFlags = [ "multimon-ng.pro" ];
|
||||||
|
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
mkdir -p $out/bin
|
mkdir -p $out/bin
|
||||||
cp multimon-ng $out/bin
|
cp multimon-ng $out/bin
|
||||||
|
@ -9,8 +9,18 @@ stdenv.mkDerivation rec {
|
|||||||
sha256 = "181qnknq1j5x075icpw2qk0sc4wcj9f2hym533vs936is0wxp2gk";
|
sha256 = "181qnknq1j5x075icpw2qk0sc4wcj9f2hym533vs936is0wxp2gk";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
unpackPhase = ''
|
||||||
|
tar xjf ${src}
|
||||||
|
'';
|
||||||
|
|
||||||
buildInputs = [ qtbase qtsvg boost qmakeHook ];
|
buildInputs = [ qtbase qtsvg boost qmakeHook ];
|
||||||
|
|
||||||
|
qmakeFlags = [ "phoenix.pro" ];
|
||||||
|
|
||||||
|
preConfigure = ''
|
||||||
|
cd fritzing-${version}.source
|
||||||
|
'';
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "An open source prototyping tool for Arduino-based projects";
|
description = "An open source prototyping tool for Arduino-based projects";
|
||||||
homepage = http://fritzing.org/;
|
homepage = http://fritzing.org/;
|
||||||
|
@ -18,6 +18,8 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
buildInputs = [ qt4 qmake4Hook pkgconfig graphviz ];
|
buildInputs = [ qt4 qmake4Hook pkgconfig graphviz ];
|
||||||
|
|
||||||
|
qmakeFlags = [ "guitone.pro" ];
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "Qt4 based GUI for monotone";
|
description = "Qt4 based GUI for monotone";
|
||||||
homepage = http://guitone.thomaskeller.biz;
|
homepage = http://guitone.thomaskeller.biz;
|
||||||
|
@ -22,6 +22,8 @@ stdenv.mkDerivation rec{
|
|||||||
buildInputs = [ zlib libpng pkgconfig qt4 qmake4Hook ]
|
buildInputs = [ zlib libpng pkgconfig qt4 qmake4Hook ]
|
||||||
++ (if withGamepads then [ SDL ] else [ ]);
|
++ (if withGamepads then [ SDL ] else [ ]);
|
||||||
|
|
||||||
|
qmakeFlags = [ "PPSSPPQt.pro" ];
|
||||||
|
|
||||||
preConfigure = "cd Qt";
|
preConfigure = "cd Qt";
|
||||||
installPhase = "mkdir -p $out/bin && cp ppsspp $out/bin";
|
installPhase = "mkdir -p $out/bin && cp ppsspp $out/bin";
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user