mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 15:22:59 +01:00
parent
83406bc171
commit
0b88755d37
1 changed files with 2 additions and 15 deletions
|
@ -1,7 +1,6 @@
|
|||
{ stdenv, fetchurl, qtbase, qtsvg, boost }:
|
||||
{ stdenv, fetchurl, qtbase, qtsvg, qmakeHook, boost }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
|
||||
version = "0.9.0b";
|
||||
name = "fritzing-${version}";
|
||||
|
||||
|
@ -10,19 +9,7 @@ stdenv.mkDerivation rec {
|
|||
sha256 = "181qnknq1j5x075icpw2qk0sc4wcj9f2hym533vs936is0wxp2gk";
|
||||
};
|
||||
|
||||
unpackPhase = ''
|
||||
tar xjf ${src}
|
||||
'';
|
||||
|
||||
buildInputs = [ qtbase qtsvg boost ];
|
||||
|
||||
configurePhase = ''
|
||||
runHook preConfigure
|
||||
cd fritzing-${version}.source
|
||||
echo $PATH
|
||||
qmake PREFIX=$out phoenix.pro
|
||||
runHook postConfigure
|
||||
'';
|
||||
buildInputs = [ qtbase qtsvg boost qmakeHook ];
|
||||
|
||||
meta = {
|
||||
description = "An open source prototyping tool for Arduino-based projects";
|
||||
|
|
Loading…
Reference in a new issue