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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
745 B
Nix
Raw Normal View History

{ fetchhg, lib, stdenv, cmake, coin3d, motif, libXext, 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 ];
buildInputs = [ coin3d motif libGLU libGL libXext 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;
};
}