48 lines
1.6 KiB
Nix
48 lines
1.6 KiB
Nix
{ stdenv, fetchgit, cmake, pkgconfig, zlib, libpng, cairo, freetype
|
|
, json_c, fontconfig, gtkmm2, pangomm, glew, mesa_glu, xlibs, pcre
|
|
}:
|
|
stdenv.mkDerivation rec {
|
|
name = "solvespace-2.3-20170416";
|
|
rev = "b1d87bf284b32e875c8edba592113e691ea10bcd";
|
|
src = fetchgit {
|
|
url = https://github.com/solvespace/solvespace;
|
|
inherit rev;
|
|
sha256 = "160qam04pfrwkh9qskfmjkj01wrjwhl09xi6jjxi009yqg3cff9l";
|
|
fetchSubmodules = true;
|
|
};
|
|
|
|
buildInputs = [
|
|
cmake pkgconfig zlib libpng cairo freetype
|
|
json_c fontconfig gtkmm2 pangomm glew mesa_glu
|
|
xlibs.libpthreadstubs xlibs.libXdmcp pcre
|
|
];
|
|
enableParallelBuilding = true;
|
|
|
|
preConfigure = ''
|
|
patch CMakeLists.txt <<EOF
|
|
@@ -20,9 +20,9 @@
|
|
# NOTE TO PACKAGERS: The embedded git commit hash is critical for rapid bug triage when the builds
|
|
# can come from a variety of sources. If you are mirroring the sources or otherwise build when
|
|
# the .git directory is not present, please comment the following line:
|
|
-include(GetGitCommitHash)
|
|
+# include(GetGitCommitHash)
|
|
# and instead uncomment the following, adding the complete git hash of the checkout you are using:
|
|
-# set(GIT_COMMIT_HASH 0000000000000000000000000000000000000000)
|
|
+set(GIT_COMMIT_HASH $rev)
|
|
EOF
|
|
'';
|
|
|
|
postInstall = ''
|
|
substituteInPlace $out/share/applications/solvespace.desktop \
|
|
--replace /usr/bin/ $out/bin/ \
|
|
'';
|
|
|
|
meta = {
|
|
description = "A parametric 3d CAD program";
|
|
license = stdenv.lib.licenses.gpl3;
|
|
maintainers = with stdenv.lib.maintainers; [ edef ];
|
|
platforms = stdenv.lib.platforms.linux;
|
|
homepage = http://solvespace.com;
|
|
};
|
|
}
|