Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / libraries / tachyon / default.nix
blob64746d84572aba6ea3144b5a2ffa26b4dc26710a
1 { lib, stdenv
2 , fetchurl
3 , Carbon
4 , libjpeg
5 , libpng
6 , withJpegSupport ? true # support jpeg output
7 , withPngSupport ? true # support png output
8 }:
10 stdenv.mkDerivation rec {
11   pname = "tachyon";
12   version = "0.99.5";
13   src = fetchurl {
14     url = "http://jedi.ks.uiuc.edu/~johns/tachyon/files/${version}/${pname}-${version}.tar.gz";
15     sha256 = "sha256-CSA8ECMRFJ9d9cw2dAn5bHJXQmZtGcJNtbqZTVqBpvU=";
16   };
17   buildInputs = lib.optionals stdenv.isDarwin [
18     Carbon
19   ] ++ lib.optionals withJpegSupport [
20     libjpeg
21   ] ++ lib.optionals withPngSupport [
22     libpng
23   ];
24   preBuild = ''
25     cd unix
26   '' + lib.optionalString withJpegSupport ''
27     export USEJPEG=" -DUSEJPEG"
28     export JPEGLIB=" -ljpeg"
29   '' + lib.optionalString withPngSupport ''
30     export USEPNG=" -DUSEPNG"
31     export PNGLIB=" -lpng -lz"
32   '';
33   arch = if stdenv.hostPlatform.system == "x86_64-linux"   then "linux-64-thr"  else
34          if stdenv.hostPlatform.system == "i686-linux"     then "linux-thr"     else
35          # 2021-03-29: multithread (-DTHR -D_REENTRANT) was disabled on linux-arm
36          # because it caused Sage's 3D plotting tests to hang indefinitely.
37          # see https://github.com/NixOS/nixpkgs/pull/117465
38          if stdenv.hostPlatform.system == "aarch64-linux"  then "linux-arm"     else
39          if stdenv.hostPlatform.system == "armv7l-linux"   then "linux-arm"     else
40          if stdenv.hostPlatform.system == "x86_64-darwin"  then "macosx-thr"    else
41          if stdenv.hostPlatform.system == "i686-darwin"    then "macosx-64-thr" else
42          if stdenv.hostPlatform.system == "i686-cygwin"    then "win32"         else
43          if stdenv.hostPlatform.system == "x86_64-freebsd" then "bsd"           else
44          if stdenv.hostPlatform.system == "x686-freebsd"   then "bsd"           else
45          throw "Don't know what arch to select for tachyon build";
46   makeFlags = [ arch ];
48   patches = [
49     # Remove absolute paths in Make-config (and unset variables so they can be set in preBuild)
50     ./no-absolute-paths.patch
51     # Include new targets (like arm)
52     ./make-archs.patch
53   ];
54   postPatch = ''
55     # Ensure looks for nix-provided Carbon, not system frameworks
56     substituteInPlace unix/Make-arch \
57       --replace '-F/System/Library/Frameworks' ""
58   '';
60   installPhase = ''
61     cd ../compile/${arch}
62     mkdir -p "$out"/{bin,lib,include,share/doc/tachyon,share/tachyon}
63     cp tachyon "$out"/bin
64     cp libtachyon.* "$out/lib"
65     cd ../..
66     cp src/*.h "$out/include/"
67     cp Changes Copyright README "$out/share/doc/tachyon"
68     cp -r scenes "$out/share/tachyon/scenes"
69   '';
70   meta = {
71     description = "A Parallel / Multiprocessor Ray Tracing System";
72     license = lib.licenses.bsd3;
73     maintainers = [lib.maintainers.raskin];
74     platforms = with lib.platforms; linux ++ cygwin ++ darwin;
75     homepage = "http://jedi.ks.uiuc.edu/~johns/tachyon/";
76   };