21f17d69f6
Build-tested on x86_64 Linux & Mac.
31 lines
802 B
Nix
31 lines
802 B
Nix
{ stdenv, fetchurl, qtbase, qtsvg, qmakeHook, boost }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "0.9.0b";
|
|
name = "fritzing-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "http://fritzing.org/download/${version}/source-tarball/fritzing-${version}.source.tar_1.bz2";
|
|
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/;
|
|
license = stdenv.lib.licenses.gpl3;
|
|
maintainers = [ stdenv.lib.maintainers.robberer ];
|
|
platforms = stdenv.lib.platforms.linux;
|
|
};
|
|
}
|