2022-10-29 21:14:27 +00:00
|
|
|
{ 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 ];
|
2022-10-29 21:14:27 +00:00
|
|
|
buildInputs = [ coin3d motif libGLU libGL libXext libXmu ];
|
2018-05-07 22:40:10 +00:00
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 01:11:51 +00:00
|
|
|
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;
|
|
|
|
};
|
|
|
|
}
|