2019-05-24 13:12:18 +01:00
|
|
|
{ stdenv, fetchFromGitHub, scons, pkgconfig, SDL2, lua, fftwFloat, zlib, bzip2 }:
|
2015-04-07 23:44:39 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "the-powder-toy";
|
2019-05-24 13:12:18 +01:00
|
|
|
version = "94.1";
|
2016-08-13 01:15:04 +01:00
|
|
|
|
2015-04-07 23:44:39 +01:00
|
|
|
src = fetchFromGitHub {
|
2019-01-03 12:36:24 +00:00
|
|
|
owner = "ThePowderToy";
|
2015-04-07 23:44:39 +01:00
|
|
|
repo = "The-Powder-Toy";
|
|
|
|
rev = "v${version}";
|
2019-05-24 13:12:18 +01:00
|
|
|
sha256 = "0w3i4zjkw52qbv3s9cgcwxrdbb1npy0ka7wygyb76xcb17bj0l0b";
|
2015-04-07 23:44:39 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ scons pkgconfig ];
|
|
|
|
|
2019-05-24 13:12:18 +01:00
|
|
|
buildInputs = [ SDL2 lua fftwFloat zlib bzip2 ];
|
2015-04-07 23:44:39 +01:00
|
|
|
|
2018-11-12 02:52:07 +00:00
|
|
|
sconsFlags = "--tool=";
|
2015-04-07 23:44:39 +01:00
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
install -Dm 755 build/powder* "$out/bin/powder"
|
|
|
|
'';
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "A free 2D physics sandbox game";
|
2017-08-01 21:03:30 +01:00
|
|
|
homepage = http://powdertoy.co.uk/;
|
2018-03-09 13:19:35 +00:00
|
|
|
platforms = [ "i686-linux" "x86_64-linux" "x86_64-darwin" ];
|
2015-04-07 23:44:39 +01:00
|
|
|
license = licenses.gpl3;
|
|
|
|
maintainers = with maintainers; [ abbradar ];
|
|
|
|
};
|
|
|
|
}
|