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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
{ lib
, stdenv
, fetchFromGitHub
, cmake
, boost
, eigen
, glm
, libGL
, libpng
, openexr
, tbb
, xorg
, ilmbase
, llvmPackages
}:
stdenv.mkDerivation rec {
pname = "curv";
version = "0.5";
src = fetchFromGitHub {
owner = "curv3d";
repo = "curv";
rev = "refs/tags/${version}";
hash = "sha256-m4p5uxRk6kEJUilmbQ1zJcQDRvRCV7pkxnqupZJxyjo=";
fetchSubmodules = true;
};
strictDeps = true;
nativeBuildInputs = [
cmake
];
buildInputs = [
boost
eigen
glm
libGL
libpng
openexr
tbb
xorg.libX11
xorg.libXcursor
xorg.libXext
xorg.libXi
xorg.libXinerama
xorg.libXrandr
] ++ lib.optionals stdenv.hostPlatform.isDarwin [
ilmbase
llvmPackages.openmp
];
# GPU tests do not work in sandbox, instead we do this for sanity
checkPhase = ''
runHook preCheck
test "$($out/bin/curv -x 2 + 2)" -eq "4"
runHook postCheck
'';
meta = with lib; {
description = "2D and 3D geometric modelling programming language for creating art with maths";
homepage = "https://github.com/curv3d/curv";
license = licenses.asl20;
platforms = platforms.all;
broken = stdenv.hostPlatform.isDarwin;
maintainers = with maintainers; [ pbsds ];
mainProgram = "curv";
};
}
|