nixpkgs/pkgs/development/libraries/chipmunk/default.nix

31 lines
910 B
Nix
Raw Normal View History

{ stdenv, fetchurl, cmake, freeglut, libGLU_combined, glfw2, glew, libX11, xproto
2015-05-02 10:26:50 +00:00
, inputproto, libXi, libXmu
}:
stdenv.mkDerivation rec {
name = "chipmunk-${version}";
majorVersion = "7";
2017-03-12 01:58:16 +00:00
version = "${majorVersion}.0.1";
src = fetchurl {
2015-05-02 10:26:50 +00:00
url = "https://chipmunk-physics.net/release/Chipmunk-${majorVersion}.x/Chipmunk-${version}.tgz";
2017-03-12 01:58:16 +00:00
sha256 = "0q4jwv1icz8spcjkp0v3bnygi6hq2zmnsgcxkwm8i2bxfxjb8m7y";
};
2017-03-12 01:58:16 +00:00
nativeBuildInputs = [ cmake ];
2015-05-02 10:26:50 +00:00
buildInputs =
[ freeglut libGLU_combined glfw2 glew libX11 xproto inputproto libXi libXmu ];
2015-05-02 10:26:50 +00:00
postInstall = ''
mkdir -p $out/bin
2015-05-02 10:26:50 +00:00
cp demo/chipmunk_demos $out/bin
'';
meta = with stdenv.lib; {
description = "A fast and lightweight 2D game physics library";
homepage = http://chipmunk2d.net/;
license = licenses.mit;
platforms = platforms.unix; # supports Windows and MacOS as well, but those require more work
};
}