soxt: init at 1.3.0
This commit is contained in:
parent
982898c95c
commit
3eabf15f9b
21
pkgs/development/libraries/soxt/default.nix
Normal file
21
pkgs/development/libraries/soxt/default.nix
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
{ fetchurl, stdenv, coin3d, motif, xlibsWrapper, libGLU_combined }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "soxt-${version}";
|
||||||
|
version = "1.3.0";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "https://bitbucket.org/Coin3D/coin/downloads/SoXt-${version}.tar.gz";
|
||||||
|
sha256= "f5443aadafe8e2222b9b5a23d1f228bb0f3e7d98949b8ea8676171b7ea5bf013";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ coin3d motif xlibsWrapper libGLU_combined ];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
homepage = http://www.coin3d.org/;
|
||||||
|
license = licenses.bsd3;
|
||||||
|
description = "A GUI binding for using Open Inventor with Xt/Motif";
|
||||||
|
maintainers = with maintainers; [ tmplt ];
|
||||||
|
platforms = platforms.linux;
|
||||||
|
};
|
||||||
|
}
|
@ -8623,6 +8623,8 @@ with pkgs;
|
|||||||
|
|
||||||
coin3d = callPackage ../development/libraries/coin3d { };
|
coin3d = callPackage ../development/libraries/coin3d { };
|
||||||
|
|
||||||
|
soxt = callPackage ../development/libraries/soxt { };
|
||||||
|
|
||||||
CoinMP = callPackage ../development/libraries/CoinMP { };
|
CoinMP = callPackage ../development/libraries/CoinMP { };
|
||||||
|
|
||||||
commoncpp2 = callPackage ../development/libraries/commoncpp2 { };
|
commoncpp2 = callPackage ../development/libraries/commoncpp2 { };
|
||||||
|
Loading…
Reference in New Issue
Block a user