about summary refs log tree commit diff
path: root/nixpkgs/pkgs/games/the-powder-toy
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/games/the-powder-toy')
-rw-r--r--nixpkgs/pkgs/games/the-powder-toy/default.nix33
-rw-r--r--nixpkgs/pkgs/games/the-powder-toy/fix-env.patch11
2 files changed, 44 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/games/the-powder-toy/default.nix b/nixpkgs/pkgs/games/the-powder-toy/default.nix
new file mode 100644
index 000000000000..c9637436bcfe
--- /dev/null
+++ b/nixpkgs/pkgs/games/the-powder-toy/default.nix
@@ -0,0 +1,33 @@
+{ stdenv, fetchFromGitHub, scons, pkgconfig, SDL, lua, fftwFloat, zlib, bzip2 }:
+
+stdenv.mkDerivation rec {
+  name = "the-powder-toy-${version}";
+  version = "93.3";
+
+  src = fetchFromGitHub {
+    owner = "ThePowderToy";
+    repo = "The-Powder-Toy";
+    rev = "v${version}";
+    sha256 = "1bg1y13kpqxx4mpncxvmg8w02dyqyd9hl43rwnys3sqrjdm9k02j";
+  };
+
+  nativeBuildInputs = [ scons pkgconfig ];
+
+  buildInputs = [ SDL lua fftwFloat zlib bzip2 ];
+
+  sconsFlags = "--tool=";
+
+  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" ];
+    license = licenses.gpl3;
+    maintainers = with maintainers; [ abbradar ];
+  };
+}
diff --git a/nixpkgs/pkgs/games/the-powder-toy/fix-env.patch b/nixpkgs/pkgs/games/the-powder-toy/fix-env.patch
new file mode 100644
index 000000000000..b09fd4dcbe9c
--- /dev/null
+++ b/nixpkgs/pkgs/games/the-powder-toy/fix-env.patch
@@ -0,0 +1,11 @@
+--- a/SConscript
++++ b/SConscript
+@@ -99,7 +99,7 @@
+ elif platform == "Windows" and not GetOption('msvc'):
+ 	env = Environment(tools=['mingw'], ENV={'PATH' : os.environ['PATH']})
+ else:
+-	env = Environment(tools=['default'], ENV={'PATH' : os.environ['PATH']})
++	env = Environment(tools=['default'], ENV = os.environ)
+ 
+ #attempt to automatically find cross compiler
+ if not tool and compilePlatform == "Linux" and compilePlatform != platform: