nixpkgs/pkgs/games/lincity/ng.nix

56 lines
1.1 KiB
Nix
Raw Normal View History

2021-01-17 02:04:36 +00:00
{ lib, stdenv, fetchFromGitHub, autoreconfHook, jam, pkg-config
2019-11-10 16:44:34 +00:00
, zlib, libxml2, libxslt, xorgproto, libX11, libGLU, libGL, SDL
, SDL_mixer, SDL_image, SDL_ttf, SDL_gfx, physfs
2012-11-30 18:59:26 +00:00
}:
2019-08-13 21:52:01 +00:00
stdenv.mkDerivation {
pname = "lincity-ng";
2017-08-29 12:23:52 +00:00
version = "2.9beta.20170715";
src = fetchFromGitHub {
owner = "lincity-ng";
repo = "lincity-ng";
rev = "0c19714b811225238f310633e59f428934185e6b";
2017-08-29 12:23:52 +00:00
sha256 = "1gaj9fq97zmb0jsdw4rzrw34pimkmkwbfqps0glpqij4w3srz5f3";
2012-11-30 18:59:26 +00:00
};
hardeningDisable = [ "format" ];
2016-02-12 15:59:08 +00:00
2017-08-29 12:23:52 +00:00
nativeBuildInputs = [
2021-01-17 02:04:36 +00:00
autoreconfHook jam pkg-config
2017-08-29 12:23:52 +00:00
];
buildInputs = [
2019-11-10 16:44:34 +00:00
zlib libxml2 libxslt xorgproto libX11 libGLU libGL SDL SDL_mixer SDL_image
2017-08-29 12:23:52 +00:00
SDL_ttf SDL_gfx physfs
];
autoreconfPhase = ''
./autogen.sh
'';
buildPhase = ''
runHook preBuild
AR='ar r' jam -j $NIX_BUILD_CORES
runHook postBuild
'';
installPhase = ''
runHook preInstall
touch CREDITS
AR='ar r' jam install
2012-11-30 18:59:26 +00:00
runHook postInstall
'';
2012-11-30 18:59:26 +00:00
meta = with lib; {
description = "City building game";
license = licenses.gpl2;
maintainers = with maintainers; [ raskin ];
platforms = platforms.linux;
2012-11-30 18:59:26 +00:00
};
}