summaryrefslogtreecommitdiff
path: root/Biz/Bild/Deps/inspekt3d.nix
blob: 2d76b0d86556afb160cca79b8c8e1a6702b45f18 (plain)
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
34
35
36
37
38
39
40
41
{ stdenv
, fetchFromGitHub
, autoreconfHook
, pkgconfig
, guile
, guile-opengl
, mesa
, glibcLocales
, libfive
, sources
}:


stdenv.mkDerivation {
  name = "inspekt3d-unstable";

  src = sources.inspekt3d;
  version = "unstable-2018-10-17";

  nativeBuildInputs = [ pkgconfig autoreconfHook ];
  buildInputs = [ guile glibcLocales mesa ];
  propagatedBuildInputs = [ guile-opengl libfive ];

  preBuild = ''
    substituteInPlace inspekt3d/library.scm \
      --replace '"libfive-guile"' '"${libfive}/lib/libfive-guile.so"' \
      --replace '"libfive"' '"${libfive}/lib/libfive.so"'
  '';

  GUILE_AUTO_COMPILE = 0;
  preConfigure = "./bootstrap";

  meta = with stdenv.lib; {
    description = "Lightweight 3D viewer for Libfive written in Guile Scheme";
    homepage = "https://gitlab.com/kavalogic-inc/inspekt3d";
    license = licenses.gpl3;
    maintainers = with maintainers; [ bsima ];
    platforms = platforms.all;
  };
}