Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ fetchhg, lib, stdenv, cmake, coin3d, motif, libXext, libXmu, libGLU, libGL }: 2 3stdenv.mkDerivation { 4 pname = "soxt"; 5 version = "unstable-2019-06-14"; 6 7 src = fetchhg { 8 url = "https://bitbucket.org/Coin3D/soxt"; 9 rev = "85e135bb266fbb17e47fc336b876a576a239c15c"; 10 sha256 = "0vk5cgn53yqf7csqdnlnyyhi4mbgx4wlsq70613p5fgxlvxzhcym"; 11 fetchSubrepos = true; 12 }; 13 14 nativeBuildInputs = [ cmake ]; 15 buildInputs = [ coin3d motif libGLU libGL libXext libXmu ]; 16 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 }; 24}