nixpkgs/pkgs/applications/graphics/rapcad/default.nix

31 lines
792 B
Nix
Raw Normal View History

2015-12-20 03:22:17 +01:00
{ stdenv, fetchgit, cgal, boost, gmp, mpfr, flex, bison, dxflib, readline
, qtbase
}:
stdenv.mkDerivation rec {
2014-11-04 10:14:19 +01:00
version = "0.9.5";
name = "rapcad-${version}";
src = fetchgit {
2013-07-18 19:42:04 +02:00
url = "https://github.com/GilesBathgate/RapCAD.git";
rev = "refs/tags/v${version}";
2014-11-04 10:14:19 +01:00
sha256 = "15c18jvgbwyrfhv7r35ih0gzx35vjlsbi984h1sckgh2z17hjq8l";
};
2015-12-20 03:22:17 +01:00
buildInputs = [ qtbase cgal boost gmp mpfr flex bison dxflib readline ];
configurePhase = ''
runHook preConfigure
qmake
sed -e "s@/usr/@$out/@g" -i $(find . -name Makefile)
runHook postConfigure
'';
meta = {
license = stdenv.lib.licenses.gpl3;
maintainers = with stdenv.lib.maintainers; [raskin];
platforms = stdenv.lib.platforms.linux;
description = ''Constructive solid geometry package'';
};
}