nixpkgs/pkgs/applications/graphics/antimony/default.nix
2015-06-02 11:11:39 +02:00

42 lines
1.1 KiB
Nix

{ stdenv, fetchgit, libpng, python3, boost, mesa, qt5, ncurses }:
let
gitRev = "745eca3a2d2657c495d5509e9083c884e021d09c";
gitBranch = "master";
gitTag = "0.8.0b";
in
stdenv.mkDerivation rec {
name = "antimony-${version}";
version = gitTag;
src = fetchgit {
url = "git://github.com/mkeeter/antimony.git";
rev = gitRev;
sha256 = "19ir3y5ipmfyygcn8mbxika4j3af6dfrv54dvhn6maz7dy8h30f4";
};
patches = [ ./paths-fix.patch ];
buildInputs = [
libpng python3 (boost.override { python = python3; })
mesa qt5.base ncurses
];
configurePhase = ''
export GITREV=${gitRev}
export GITBRANCH=${gitBranch}
export GITTAG=${gitTag}
cd qt
export sourceRoot=$sourceRoot/qt
qmake antimony.pro PREFIX=$out
'';
meta = with stdenv.lib; {
description = "A computer-aided design (CAD) tool from a parallel universe";
homepage = "https://github.com/mkeeter/antimony";
license = licenses.mit;
platforms = platforms.linux;
};
}