Merge pull request #17043 from womfoo/fix/qmake4Hook-builds

reintroduce qmake .pro files after qmake4Hook changes
This commit is contained in:
Nikolay Amiantov 2016-07-18 00:11:24 +04:00 committed by GitHub
commit aefd8c420c
4 changed files with 16 additions and 0 deletions

View file

@ -16,6 +16,8 @@ stdenv.mkDerivation {
nativeBuildInputs = [ qmake4Hook ];
qmakeFlags = [ "multimon-ng.pro" ];
installPhase = ''
mkdir -p $out/bin
cp multimon-ng $out/bin

View file

@ -9,8 +9,18 @@ stdenv.mkDerivation rec {
sha256 = "181qnknq1j5x075icpw2qk0sc4wcj9f2hym533vs936is0wxp2gk";
};
unpackPhase = ''
tar xjf ${src}
'';
buildInputs = [ qtbase qtsvg boost qmakeHook ];
qmakeFlags = [ "phoenix.pro" ];
preConfigure = ''
cd fritzing-${version}.source
'';
meta = {
description = "An open source prototyping tool for Arduino-based projects";
homepage = http://fritzing.org/;

View file

@ -18,6 +18,8 @@ stdenv.mkDerivation rec {
buildInputs = [ qt4 qmake4Hook pkgconfig graphviz ];
qmakeFlags = [ "guitone.pro" ];
meta = {
description = "Qt4 based GUI for monotone";
homepage = http://guitone.thomaskeller.biz;

View file

@ -22,6 +22,8 @@ stdenv.mkDerivation rec{
buildInputs = [ zlib libpng pkgconfig qt4 qmake4Hook ]
++ (if withGamepads then [ SDL ] else [ ]);
qmakeFlags = [ "PPSSPPQt.pro" ];
preConfigure = "cd Qt";
installPhase = "mkdir -p $out/bin && cp ppsspp $out/bin";