nixpkgs/pkgs/development/libraries/coin3d/default.nix

29 lines
794 B
Nix
Raw Normal View History

2019-06-15 16:43:52 +00:00
{ fetchFromBitbucket, stdenv, boost, cmake, libGLU_combined }:
stdenv.mkDerivation rec {
2019-06-15 16:43:52 +00:00
pname = "coin";
version = "unstable-2019-06-12";
2019-06-15 16:43:52 +00:00
src = fetchFromBitbucket {
owner = "Coin3D";
repo = "coin";
rev = "8d860d7ba112b22c4e9b289268fd8b3625ab81d3";
sha256 = "1cpncljqvw28k5wvpgchv593nayhby5gwpvbnyllc9hb9ms816xn";
};
2019-06-15 16:43:52 +00:00
postPatch = ''
sed -i /cpack.d/d CMakeLists.txt
'';
2013-08-27 09:38:20 +00:00
2019-06-15 16:43:52 +00:00
nativeBuildInputs = [ cmake ];
buildInputs = [ boost libGLU_combined ];
meta = {
2019-06-15 16:43:52 +00:00
homepage = "https://bitbucket.org/Coin3D/coin/wiki/Home";
license = stdenv.lib.licenses.gpl2Plus;
description = "High-level, retained-mode toolkit for effective 3D graphics development";
maintainers = [ stdenv.lib.maintainers.viric ];
platforms = stdenv.lib.platforms.linux;
};
}