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

25 lines
755 B
Nix
Raw Normal View History

{ fetchhg, lib, stdenv, cmake, coin3d, motif, xlibsWrapper, libXmu, libGLU, libGL }:
2018-05-07 22:40:10 +00:00
2019-08-13 21:52:01 +00:00
stdenv.mkDerivation {
2019-06-17 15:51:32 +00:00
pname = "soxt";
version = "unstable-2019-06-14";
2018-05-07 22:40:10 +00:00
2019-06-17 15:51:32 +00:00
src = fetchhg {
url = "https://bitbucket.org/Coin3D/soxt";
rev = "85e135bb266fbb17e47fc336b876a576a239c15c";
sha256 = "0vk5cgn53yqf7csqdnlnyyhi4mbgx4wlsq70613p5fgxlvxzhcym";
fetchSubrepos = true;
2018-05-07 22:40:10 +00:00
};
2019-06-17 15:51:32 +00:00
nativeBuildInputs = [ cmake ];
2019-11-10 16:44:34 +00:00
buildInputs = [ coin3d motif xlibsWrapper libGLU libGL libXmu ];
2018-05-07 22:40:10 +00:00
meta = with lib; {
homepage = "https://bitbucket.org/Coin3D/coin/wiki/Home";
2018-05-07 22:40:10 +00:00
license = licenses.bsd3;
description = "A GUI binding for using Open Inventor with Xt/Motif";
maintainers = with maintainers; [ tmplt ];
platforms = platforms.linux;
};
}