Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 42 lines 790 B view raw
1{ 2 fetchhg, 3 lib, 4 stdenv, 5 cmake, 6 coin3d, 7 motif, 8 libXext, 9 libXmu, 10 libGLU, 11 libGL, 12}: 13 14stdenv.mkDerivation { 15 pname = "soxt"; 16 version = "unstable-2019-06-14"; 17 18 src = fetchhg { 19 url = "https://bitbucket.org/Coin3D/soxt"; 20 rev = "85e135bb266fbb17e47fc336b876a576a239c15c"; 21 sha256 = "0vk5cgn53yqf7csqdnlnyyhi4mbgx4wlsq70613p5fgxlvxzhcym"; 22 fetchSubrepos = true; 23 }; 24 25 nativeBuildInputs = [ cmake ]; 26 buildInputs = [ 27 coin3d 28 motif 29 libGLU 30 libGL 31 libXext 32 libXmu 33 ]; 34 35 meta = with lib; { 36 homepage = "https://bitbucket.org/Coin3D/coin/wiki/Home"; 37 license = licenses.bsd3; 38 description = "GUI binding for using Open Inventor with Xt/Motif"; 39 maintainers = with maintainers; [ tmplt ]; 40 platforms = platforms.linux; 41 }; 42}