blob: d1cf60e9cc9c54f510ae6de2e983ab95fc6c194f (
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
|
{ stdenv, lib, 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 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;
};
}
|