nixpkgs/pkgs/games/lincity/ng.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

86 lines
1.2 KiB
Nix
Raw Normal View History

{ stdenv
, SDL2
, SDL2_gfx
, SDL2_image
, SDL2_mixer
, SDL2_ttf
, autoreconfHook
, fetchFromGitHub
, jam
, lib
, libGL
, libGLU
, libX11
, libxml2
, libxslt
, physfs
, pkg-config
, xorgproto
, zlib
2012-11-30 18:59:26 +00:00
}:
2019-08-13 21:52:01 +00:00
stdenv.mkDerivation {
pname = "lincity-ng";
version = "2.9beta.20211125";
2017-08-29 12:23:52 +00:00
src = fetchFromGitHub {
owner = "lincity-ng";
repo = "lincity-ng";
rev = "b9062bec252632ca5d26b98d71453b8762c63173";
sha256 = "0l07cn8rmpmlqdppjc2ikh5c7xmwib27504zpmn3n9pryp394r46";
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 = [
autoreconfHook
jam
pkg-config
2017-08-29 12:23:52 +00:00
];
buildInputs = [
SDL2
SDL2_gfx
SDL2_image
SDL2_mixer
SDL2_ttf
libGL
libGLU
libX11
libxml2
libxslt
physfs
xorgproto
zlib
2017-08-29 12:23:52 +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
runHook postInstall
'';
2012-11-30 18:59:26 +00:00
meta = with lib; {
description = "City building game";
mainProgram = "lincity-ng";
license = licenses.gpl2;
maintainers = with maintainers; [ raskin ];
platforms = platforms.linux;
2012-11-30 18:59:26 +00:00
};
}