1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-19 12:11:28 +00:00
nixpkgs/pkgs/games/the-powder-toy/default.nix

36 lines
1,020 B
Nix
Raw Normal View History

2021-07-15 11:59:59 +01:00
{ lib, stdenv, fetchFromGitHub, meson, luajit, ninja, pkg-config
, python3, SDL2, lua, fftwFloat, zlib, bzip2, curl, darwin }:
2015-04-07 23:44:39 +01:00
stdenv.mkDerivation rec {
pname = "the-powder-toy";
2021-07-19 11:23:42 +01:00
version = "96.1.349";
2016-08-13 01:15:04 +01:00
2015-04-07 23:44:39 +01:00
src = fetchFromGitHub {
2020-08-08 01:57:13 +01:00
owner = "The-Powder-Toy";
2015-04-07 23:44:39 +01:00
repo = "The-Powder-Toy";
rev = "v${version}";
2021-07-19 11:23:42 +01:00
sha256 = "sha256-MSN81kPaH8cWZO+QEOlMUQQghs1kn8CpsKA5SUC/RX8=";
2015-04-07 23:44:39 +01:00
};
2021-07-15 11:59:59 +01:00
nativeBuildInputs = [ meson ninja pkg-config python3 ];
2015-04-07 23:44:39 +01:00
2021-07-15 11:59:59 +01:00
buildInputs = [ luajit SDL2 lua fftwFloat zlib bzip2 curl ];
2015-04-07 23:44:39 +01:00
installPhase = ''
2021-07-15 11:59:59 +01:00
install -Dm 755 powder $out/bin/powder
2015-04-07 23:44:39 +01:00
'';
2021-07-15 11:59:59 +01:00
propagatedBuildInputs = lib.optionals stdenv.isDarwin [ darwin.apple_sdk.frameworks.Cocoa ];
2015-04-07 23:44:39 +01:00
enableParallelBuilding = true;
meta = with lib; {
2015-04-07 23:44:39 +01:00
description = "A free 2D physics sandbox game";
homepage = "http://powdertoy.co.uk/";
platforms = [ "i686-linux" "x86_64-linux" "x86_64-darwin" ];
2021-07-06 06:43:22 +01:00
license = licenses.gpl3Plus;
2020-08-08 01:57:13 +01:00
maintainers = with maintainers; [ abbradar siraben ];
2021-07-06 05:36:48 +01:00
mainProgram = "powder";
2015-04-07 23:44:39 +01:00
};
}