about summary refs log tree commit diff
path: root/nixpkgs/pkgs/games/lincity/ng.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/games/lincity/ng.nix')
-rw-r--r--nixpkgs/pkgs/games/lincity/ng.nix55
1 files changed, 55 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/games/lincity/ng.nix b/nixpkgs/pkgs/games/lincity/ng.nix
new file mode 100644
index 000000000000..b860d2ee58b1
--- /dev/null
+++ b/nixpkgs/pkgs/games/lincity/ng.nix
@@ -0,0 +1,55 @@
+{ stdenv, fetchFromGitHub, autoreconfHook, jam, pkgconfig
+, zlib, libxml2, libxslt, xorgproto, libX11, libGLU_combined, SDL
+, SDL_mixer, SDL_image, SDL_ttf, SDL_gfx, physfs
+}:
+
+stdenv.mkDerivation rec {
+  name = "lincity-ng-${version}";
+  version = "2.9beta.20170715";
+
+  src = fetchFromGitHub {
+    owner  = "lincity-ng";
+    repo   = "lincity-ng";
+    rev    = "0c19714b811225238f310633e59f428934185e6b";
+    sha256 = "1gaj9fq97zmb0jsdw4rzrw34pimkmkwbfqps0glpqij4w3srz5f3";
+  };
+
+  hardeningDisable = [ "format" ];
+
+  nativeBuildInputs = [
+    autoreconfHook jam pkgconfig
+  ];
+
+  buildInputs = [
+    zlib libxml2 libxslt xorgproto libX11 libGLU_combined SDL SDL_mixer SDL_image
+    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
+
+    runHook postInstall
+  '';
+
+  meta = with stdenv.lib; {
+    description = "City building game";
+    license = licenses.gpl2;
+    maintainers = with maintainers; [ raskin ];
+    platforms = platforms.linux;
+  };
+}