summary refs log tree commit diff
path: root/pkgs/development/libraries/tachyon/default.nix
blob: b1649da6459fd0c4478426aea7c56727a48a87eb (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
{stdenv, fetchurl}:
stdenv.mkDerivation rec {
  name = "tachyon-${version}";
  version = "0.98.9";
  src = fetchurl {
    url = "http://jedi.ks.uiuc.edu/~johns/tachyon/files/${version}/${name}.tar.gz";
    sha256 = "1ms0xr4ibrzz291ibm265lyjrdjrmhfrx0a70hwykhsdxn6jk8y6";
  };
  buildInputs = [];
  preBuild = "cd unix";
  arch = if stdenv.system == "x86_64-linux" then "linux-64-thr" else
         if stdenv.system == "i686-linux"   then "linux-thr"    else
         throw "Don't know what arch to select for tachyon build";
  makeFlags = "${arch}";
  installPhase = ''
    cd ../compile/${arch}
    mkdir -p "$out"/{bin,lib,include,share/doc/tachyon,share/tachyon}
    cp tachyon "$out"/bin
    cp libtachyon.* "$out/lib"
    cd ../..
    cp Changes Copyright README "$out/share/doc/tachyon"
    cp -r scenes "$out/share/tachyon/scenes"
  '';
  meta = {
    inherit version;
    description = ''A Parallel / Multiprocessor Ray Tracing System'';
    license = stdenv.lib.licenses.bsd3;
    maintainers = [stdenv.lib.maintainers.raskin];
    platforms = stdenv.lib.platforms.linux;
    homepage = http://jedi.ks.uiuc.edu/~johns/tachyon/;
  };
}