nixpkgs/pkgs/games/the-powder-toy/default.nix

37 lines
962 B
Nix
Raw Normal View History

2020-08-08 00:57:13 +00:00
{ stdenv, fetchFromGitHub, scons, pkgconfig, SDL2, lua, fftwFloat,
zlib, bzip2, curl, darwin }:
2015-04-07 22:44:39 +00:00
stdenv.mkDerivation rec {
pname = "the-powder-toy";
2020-08-08 00:57:13 +00:00
version = "95.0";
2016-08-13 00:15:04 +00:00
2015-04-07 22:44:39 +00:00
src = fetchFromGitHub {
2020-08-08 00:57:13 +00:00
owner = "The-Powder-Toy";
2015-04-07 22:44:39 +00:00
repo = "The-Powder-Toy";
rev = "v${version}";
2020-08-08 00:57:13 +00:00
sha256 = "18rp2g1mj0gklra06wm9dm57h73hmm301npndh0y8ap192i5s8sa";
2015-04-07 22:44:39 +00:00
};
nativeBuildInputs = [ scons pkgconfig ];
2020-08-08 00:57:13 +00:00
propagatedBuildInputs = stdenv.lib.optionals stdenv.isDarwin
[ darwin.apple_sdk.frameworks.Cocoa ];
2015-04-07 22:44:39 +00:00
2020-08-08 00:57:13 +00:00
buildInputs = [ SDL2 lua fftwFloat zlib bzip2 curl ];
2015-04-07 22:44:39 +00:00
installPhase = ''
install -Dm 755 build/powder* "$out/bin/powder"
'';
enableParallelBuilding = true;
meta = with stdenv.lib; {
description = "A free 2D physics sandbox game";
homepage = "http://powdertoy.co.uk/";
platforms = [ "i686-linux" "x86_64-linux" "x86_64-darwin" ];
2015-04-07 22:44:39 +00:00
license = licenses.gpl3;
2020-08-08 00:57:13 +00:00
maintainers = with maintainers; [ abbradar siraben ];
2015-04-07 22:44:39 +00:00
};
}