blob: de3db4e5f03b2bb996d4abb4d3d85ca979405a3d (
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
|
{
stdenv,
lib,
autoreconfHook,
pkg-config,
guile,
guile-opengl,
mesa,
glibcLocales,
libfive,
sources,
}:
stdenv.mkDerivation {
name = "inspekt3d-unstable";
src = sources.inspekt3d;
version = "unstable-2018-10-17";
nativeBuildInputs = [pkg-config 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 lib; {
description = "Lightweight 3D viewer for Libfive written in Guile Scheme";
homepage = "https://sr.ht/~morgansmith/inspekt3d";
license = licenses.gpl3;
maintainers = with maintainers; [bsima];
platforms = platforms.all;
};
}
|