aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/games/the-powder-toy/default.nix
blob: 72b4bf20383a63d7381499aba0bf1ca60f05810b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{ stdenv, fetchFromGitHub, scons, pkgconfig, SDL2, lua, fftwFloat, zlib, bzip2 }:

stdenv.mkDerivation rec {
  pname = "the-powder-toy";
  version = "94.1";

  src = fetchFromGitHub {
    owner = "ThePowderToy";
    repo = "The-Powder-Toy";
    rev = "v${version}";
    sha256 = "0w3i4zjkw52qbv3s9cgcwxrdbb1npy0ka7wygyb76xcb17bj0l0b";
  };

  nativeBuildInputs = [ scons pkgconfig ];

  buildInputs = [ SDL2 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 ];
  };
}