27 lines
736 B
Nix
27 lines
736 B
Nix
{stdenv, fetchgit, qt5, cgal, boost, gmp, mpfr, flex, bison, dxflib, readline }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "0.9.5";
|
|
name = "rapcad-${version}";
|
|
|
|
src = fetchgit {
|
|
url = "https://github.com/GilesBathgate/RapCAD.git";
|
|
rev = "refs/tags/v${version}";
|
|
sha256 = "15c18jvgbwyrfhv7r35ih0gzx35vjlsbi984h1sckgh2z17hjq8l";
|
|
};
|
|
|
|
buildInputs = [qt5 cgal boost gmp mpfr flex bison dxflib readline ];
|
|
|
|
configurePhase = ''
|
|
qmake;
|
|
sed -e "s@/usr/@$out/@g" -i $(find . -name Makefile)
|
|
'';
|
|
|
|
meta = {
|
|
license = stdenv.lib.licenses.gpl3;
|
|
maintainers = with stdenv.lib.maintainers; [raskin];
|
|
platforms = stdenv.lib.platforms.linux;
|
|
description = ''Constructive solid geometry package'';
|
|
};
|
|
}
|