summary refs log tree commit diff
path: root/pkgs/games/liquidwar
diff options
context:
space:
mode:
authorRobert Helgesson <robert@rycee.net>2015-12-29 13:55:54 +0100
committerRobert Helgesson <robert@rycee.net>2015-12-29 20:31:01 +0100
commit281b584e4acbafde94695dfdf7c25f8718469313 (patch)
tree150ead47561537e033c28ea12d5bc359eefaf68f /pkgs/games/liquidwar
parent2c9369dc439ef7e68ed4839b16dad0d2d7628b96 (diff)
downloadnixpkgs-281b584e4acbafde94695dfdf7c25f8718469313.tar
nixpkgs-281b584e4acbafde94695dfdf7c25f8718469313.tar.gz
nixpkgs-281b584e4acbafde94695dfdf7c25f8718469313.tar.bz2
nixpkgs-281b584e4acbafde94695dfdf7c25f8718469313.tar.lz
nixpkgs-281b584e4acbafde94695dfdf7c25f8718469313.tar.xz
nixpkgs-281b584e4acbafde94695dfdf7c25f8718469313.tar.zst
nixpkgs-281b584e4acbafde94695dfdf7c25f8718469313.zip
liquidwar: use stdenv
This replaces use of builderDefsPackage (#4210).
Diffstat (limited to 'pkgs/games/liquidwar')
-rw-r--r--pkgs/games/liquidwar/default.nix52
1 files changed, 21 insertions, 31 deletions
diff --git a/pkgs/games/liquidwar/default.nix b/pkgs/games/liquidwar/default.nix
index 602daa1ee86..ce346459201 100644
--- a/pkgs/games/liquidwar/default.nix
+++ b/pkgs/games/liquidwar/default.nix
@@ -1,11 +1,20 @@
-a @ { xproto, libX11, libXrender
+{ stdenv, fetchurl, xproto, libX11, libXrender
 , gmp, mesa, libjpeg, libpng
-, expat, gettext, perl
+, expat, gettext, perl, guile
 , SDL, SDL_image, SDL_mixer, SDL_ttf
 , curl, sqlite
-, libogg, libvorbis, libcaca, csound, cunit, ... } :
-let
-  buildInputs = with a; [
+, libogg, libvorbis, libcaca, csound, cunit } :
+
+stdenv.mkDerivation rec {
+  name = "liquidwar6-${version}";
+  version = "0.6.3902";
+
+  src = fetchurl {
+    url = "mirror://gnu/liquidwar6/${name}.tar.gz";
+    sha256 = "1976nnl83d8wspjhb5d5ivdvdxgb8lp34wp54jal60z4zad581fn";
+  };
+
+  buildInputs = [
     xproto libX11 gmp guile
     mesa libjpeg libpng
     expat gettext perl
@@ -14,34 +23,15 @@ let
     libogg libvorbis csound
     libXrender libcaca cunit
   ];
-in
-rec {
-  name = "liquidwar6-${meta.version}";
 
-  src = a.fetchurl {
-    url = "mirror://gnu/liquidwar6/${name}.tar.gz";
-    sha256 = "1976nnl83d8wspjhb5d5ivdvdxgb8lp34wp54jal60z4zad581fn";
-  };
-
-  inherit buildInputs;
-  configureFlags = [];
+  # To avoid problems finding SDL_types.h.
+  configureFlags = [ "CFLAGS=-I${SDL}/include/SDL" ];
 
-  /* doConfigure should be removed if not needed */
-  phaseNames = ["setVars" "doConfigure" "doMakeInstall"];
-
-  setVars = a.noDepEntry (''
-    export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -I${a.SDL}/include/SDL"
-  '');
-
-  meta = {
+  meta = with stdenv.lib; {
     description = "Quick tactics game";
-    maintainers = [
-      a.lib.maintainers.raskin
-    ];
-    platforms = with a.lib.platforms;
-      linux;
-  homepage = "http://www.gnu.org/software/liquidwar6/";
-  version = "0.6.3902";
-  updateWalker=true;
+    homepage = "http://www.gnu.org/software/liquidwar6/";
+    maintainers = [ maintainers.raskin ];
+    license = licenses.gpl3Plus;
+    platforms = platforms.linux;
   };
 }