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

34 lines
850 B
Nix
Raw Normal View History

2019-05-24 12:12:18 +00:00
{ stdenv, fetchFromGitHub, scons, pkgconfig, SDL2, lua, fftwFloat, zlib, bzip2 }:
2015-04-07 22:44:39 +00:00
stdenv.mkDerivation rec {
pname = "the-powder-toy";
2019-05-24 12:12:18 +00:00
version = "94.1";
2016-08-13 00:15:04 +00:00
2015-04-07 22:44:39 +00:00
src = fetchFromGitHub {
owner = "ThePowderToy";
2015-04-07 22:44:39 +00:00
repo = "The-Powder-Toy";
rev = "v${version}";
2019-05-24 12:12:18 +00:00
sha256 = "0w3i4zjkw52qbv3s9cgcwxrdbb1npy0ka7wygyb76xcb17bj0l0b";
2015-04-07 22:44:39 +00:00
};
nativeBuildInputs = [ scons pkgconfig ];
2019-05-24 12:12:18 +00:00
buildInputs = [ SDL2 lua fftwFloat zlib bzip2 ];
2015-04-07 22:44:39 +00:00
sconsFlags = "--tool=";
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;
maintainers = with maintainers; [ abbradar ];
};
}