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
|
2018-01-13 05:58:22 +00:00
|
|
|
, SDL_mixer, SDL_image, SDL_ttf, SDL_gfx, physfs
|
2012-11-30 18:59:26 +00:00
|
|
|
}:
|
2018-01-13 05:58:22 +00:00
|
|
|
|
2019-08-13 22:52:01 +01:00
|
|
|
stdenv.mkDerivation {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "lincity-ng";
|
2017-08-29 13:23:52 +01:00
|
|
|
version = "2.9beta.20170715";
|
|
|
|
|
2018-01-13 05:58:22 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "lincity-ng";
|
|
|
|
repo = "lincity-ng";
|
|
|
|
rev = "0c19714b811225238f310633e59f428934185e6b";
|
2017-08-29 13:23:52 +01:00
|
|
|
sha256 = "1gaj9fq97zmb0jsdw4rzrw34pimkmkwbfqps0glpqij4w3srz5f3";
|
2012-11-30 18:59:26 +00:00
|
|
|
};
|
|
|
|
|
2016-02-26 17:38:15 +00:00
|
|
|
hardeningDisable = [ "format" ];
|
2016-02-12 15:59:08 +00:00
|
|
|
|
2017-08-29 13:23:52 +01:00
|
|
|
nativeBuildInputs = [
|
2021-01-17 02:04:36 +00:00
|
|
|
autoreconfHook jam pkg-config
|
2017-08-29 13:23:52 +01: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 13:23:52 +01:00
|
|
|
SDL_ttf SDL_gfx physfs
|
|
|
|
];
|
|
|
|
|
2018-01-13 05:58:22 +00:00
|
|
|
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
|
|
|
|
2018-01-13 05:58:22 +00:00
|
|
|
runHook postInstall
|
|
|
|
'';
|
2012-11-30 18:59:26 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2018-01-13 05:58:22 +00:00
|
|
|
description = "City building game";
|
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = with maintainers; [ raskin ];
|
|
|
|
platforms = platforms.linux;
|
2012-11-30 18:59:26 +00:00
|
|
|
};
|
|
|
|
}
|