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