summary refs log tree commit diff
path: root/pkgs/applications/graphics/rapcad/default.nix
blob: 2ff82412409879ee2dea244bef3af3b3a8f88890 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{stdenv, fetchgit, qt4, cgal, boost, gmp, mpfr, flex, bison, dxflib}: 

stdenv.mkDerivation rec {
  version = "0.8.0";
  name = "rapcad-${version}";

  src = fetchgit {
    url = "https://github.com/GilesBathgate/RapCAD.git";
    rev = "refs/tags/v${version}";
    sha256 = "37c7107dc4fcf8942a4ad35377c4e42e6aedfa35296e5fcf8d84882ae35087c7";
  };
  
  buildInputs = [qt4 cgal boost gmp mpfr flex bison dxflib];

  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'';
  };
}