linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / libraries / soxt / default.nix
blob5ea23aae8791f6ced55ca0322030051d0c1cd7e6
1 { fetchhg, lib, stdenv, cmake, coin3d, motif, xlibsWrapper, libXmu, libGLU, libGL }:
3 stdenv.mkDerivation {
4   pname = "soxt";
5   version = "unstable-2019-06-14";
7   src = fetchhg {
8     url = "https://bitbucket.org/Coin3D/soxt";
9     rev = "85e135bb266fbb17e47fc336b876a576a239c15c";
10     sha256 = "0vk5cgn53yqf7csqdnlnyyhi4mbgx4wlsq70613p5fgxlvxzhcym";
11     fetchSubrepos = true;
12   };
14   nativeBuildInputs = [ cmake ];
15   buildInputs = [ coin3d motif xlibsWrapper libGLU libGL libXmu ];
17   meta = with lib; {
18     homepage = "https://bitbucket.org/Coin3D/coin/wiki/Home";
19     license = licenses.bsd3;
20     description = "A GUI binding for using Open Inventor with Xt/Motif";
21     maintainers = with maintainers; [ tmplt ];
22     platforms = platforms.linux;
23   };