summary refs log tree commit diff
path: root/pkgs/development/libraries/qhull/default.nix
blob: f91697fb117a2d0edd20a52b9fd7ac3696f34429 (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
27
28
29
30
31
32
33
{stdenv, fetchurl}:

stdenv.mkDerivation {
  name = "qhull-2010.1";
  src = fetchurl {
    url = http://www.qhull.org/download/qhull-2010.1-src.tgz;
    sha256 = "1ghnwci1s56yzzwg8gmlzhsd5v3imsqxf24yb0j5m6qv8kxqaw2m";
  };

  NIX_CFLAGS_COMPILE = "-fno-strict-aliasing " +
    (if stdenv.system == "x86_64-linux" then "-fPIC" else "");

  patchPhase = ''
    cd src
    sed -i -e "s@/usr/local@$out@" Makefile;
    sed -i -e "s@man/man1@share/man/man1@" Makefile;
  '';

  installPhase = ''
    ensureDir $out/bin
    ensureDir $out/include/qhull
    ensureDir $out/lib
    ensureDir $out/share/man/man1
    cp *.h $out/include/qhull
    cp libqhull.a $out/lib
  '';

  meta = {
    homepage = http://www.qhull.org/;
    description = "Computes the convex hull, Delaunay triangulation, ...";
    license = "free";
  };
}