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

40 lines
961 B
Nix
Raw Normal View History

2016-08-22 13:55:56 +00:00
{ stdenv, fetchFromGitHub, scons, pkgconfig, SDL, lua, fftwFloat, zlib, bzip2 }:
2015-04-07 22:44:39 +00:00
stdenv.mkDerivation rec {
name = "the-powder-toy-${version}";
2017-07-27 12:54:45 +00:00
version = "92.0.331";
2016-08-13 00:15:04 +00:00
2015-04-07 22:44:39 +00:00
src = fetchFromGitHub {
owner = "simtr";
repo = "The-Powder-Toy";
rev = "v${version}";
2017-07-27 12:54:45 +00:00
sha256 = "185zlg20qk6ic9llyf4xka923snqrpdazg568raz0jiafzzsirax";
2015-04-07 22:44:39 +00:00
};
patches = [ ./fix-env.patch ];
2016-08-22 13:55:56 +00:00
postPatch = ''
sed -i 's,lua5.1,lua,g' SConscript
'';
2015-04-07 22:44:39 +00:00
nativeBuildInputs = [ scons pkgconfig ];
2016-08-22 13:55:56 +00:00
buildInputs = [ SDL lua fftwFloat zlib bzip2 ];
2015-04-07 22:44:39 +00:00
buildPhase = "scons DESTDIR=$out/bin --tool='' -j$NIX_BUILD_CORES";
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/;
2015-04-07 22:44:39 +00:00
platforms = platforms.unix;
license = licenses.gpl3;
maintainers = with maintainers; [ abbradar ];
};
}