2020-03-29 21:30:06 +01:00
|
|
|
{ lib
|
|
|
|
, mkDerivation
|
|
|
|
, wrapQtAppsHook
|
|
|
|
, fetchFromGitHub
|
|
|
|
, cmake
|
|
|
|
, ninja
|
|
|
|
, pkgconfig
|
|
|
|
, eigen
|
|
|
|
, zlib
|
|
|
|
, libpng
|
|
|
|
, boost
|
|
|
|
, guile
|
2018-06-21 21:58:34 +01:00
|
|
|
}:
|
|
|
|
|
2020-03-29 21:30:06 +01:00
|
|
|
mkDerivation {
|
|
|
|
pname = "libfive-unstable";
|
|
|
|
version = "2020-02-15";
|
2018-06-21 21:58:34 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2020-03-29 21:30:06 +01:00
|
|
|
owner = "libfive";
|
|
|
|
repo = "libfive";
|
|
|
|
rev = "5b7717a25064478cd6bdb190683566eaf4c7afdd";
|
|
|
|
sha256 = "102zw2n3vzv84i323is4qrwwqqha8v1cniw54ss8f4bq6dmic0bg";
|
2018-06-21 21:58:34 +01:00
|
|
|
};
|
2020-03-29 21:30:06 +01:00
|
|
|
|
|
|
|
nativeBuildInputs = [ wrapQtAppsHook cmake ninja pkgconfig ];
|
|
|
|
buildInputs = [ eigen zlib libpng boost guile ];
|
2018-06-21 21:58:34 +01:00
|
|
|
|
|
|
|
# Link "Studio" binary to "libfive-studio" to be more obvious:
|
|
|
|
postFixup = ''
|
|
|
|
ln -s "$out/bin/Studio" "$out/bin/libfive-studio"
|
|
|
|
'';
|
2018-11-18 10:52:26 +00:00
|
|
|
|
2020-03-29 21:30:06 +01:00
|
|
|
meta = with lib; {
|
2018-06-21 21:58:34 +01:00
|
|
|
description = "Infrastructure for solid modeling with F-Reps in C, C++, and Guile";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://libfive.com/";
|
2020-03-29 21:30:06 +01:00
|
|
|
maintainers = with maintainers; [ hodapp kovirobi ];
|
|
|
|
license = with licenses; [ mpl20 gpl2Plus ];
|
|
|
|
platforms = with platforms; linux ++ darwin;
|
2018-06-21 21:58:34 +01:00
|
|
|
};
|
|
|
|
}
|