summary refs log tree commit diff
path: root/pkgs/games
diff options
context:
space:
mode:
authorMichael Raskin <7c6f434c@mail.ru>2011-04-17 17:55:29 +0000
committerMichael Raskin <7c6f434c@mail.ru>2011-04-17 17:55:29 +0000
commitc9f06b05c175336e60b3ac994f74cb4a41867c47 (patch)
treef50a3021e09fc5eb9cd9e0620cf6223b504b44a3 /pkgs/games
parent250bdbbdb24174622789b9a2e42f250b1972c3a0 (diff)
downloadnixpkgs-c9f06b05c175336e60b3ac994f74cb4a41867c47.tar
nixpkgs-c9f06b05c175336e60b3ac994f74cb4a41867c47.tar.gz
nixpkgs-c9f06b05c175336e60b3ac994f74cb4a41867c47.tar.bz2
nixpkgs-c9f06b05c175336e60b3ac994f74cb4a41867c47.tar.lz
nixpkgs-c9f06b05c175336e60b3ac994f74cb4a41867c47.tar.xz
nixpkgs-c9f06b05c175336e60b3ac994f74cb4a41867c47.tar.zst
nixpkgs-c9f06b05c175336e60b3ac994f74cb4a41867c47.zip
Add Widelands RTS
svn path=/nixpkgs/trunk/; revision=26869
Diffstat (limited to 'pkgs/games')
-rw-r--r--pkgs/games/widelands/default.nix67
1 files changed, 67 insertions, 0 deletions
diff --git a/pkgs/games/widelands/default.nix b/pkgs/games/widelands/default.nix
new file mode 100644
index 00000000000..8082fde7694
--- /dev/null
+++ b/pkgs/games/widelands/default.nix
@@ -0,0 +1,67 @@
+x@{builderDefsPackage
+  , libjpeg, boost, SDL, SDL_gfx, SDL_image, SDL_net, SDL_ttf, SDL_sound
+  , gettext, zlib, libiconv, libpng, python, expat, lua5, glew, doxygen
+  , cmake, ggz_base_libs, mesa, SDL_mixer
+  , ...}:
+builderDefsPackage
+(a :  
+let 
+  helperArgNames = ["stdenv" "fetchurl" "builderDefsPackage"] ++ 
+    [];
+
+  buildInputs = map (n: builtins.getAttr n x)
+    (builtins.attrNames (builtins.removeAttrs x helperArgNames));
+  sourceInfo = rec {
+    baseName="widelands";
+    version="build16";
+    name="${baseName}-${version}";
+    project="${baseName}";
+    url="http://launchpad.net/${project}/${version}/${version}/+download/${name}-src.tar.bz2";
+    hash="0pb2d73c6hynhp1x54rcfbibrrri7lyxjybd1hicn503qcakrnyq";
+  };
+in
+rec {
+  src = a.fetchurl {
+    url = sourceInfo.url;
+    sha256 = sourceInfo.hash;
+  };
+
+  inherit (sourceInfo) name version;
+  inherit buildInputs;
+
+  /* doConfigure should be removed if not needed */
+  phaseNames = ["killBuildDir" "doCmake" "doMakeInstall" "createScript"];
+      
+  killBuildDir = a.fullDepEntry ''
+    rm -r build
+  '' ["minInit" "doUnpack"];
+
+  cmakeFlags = [
+    "-DLUA_LIBRARIES=-llua"
+  ];
+
+  createScript = a.fullDepEntry ''
+    mkdir -p "$out/bin"
+    echo '#! ${a.stdenv.shell}' >> "$out/bin/widelands"
+    echo "cd \"$out/share/games/widelands\"" >> "$out/bin/widelands"
+    echo "\"$out/games/widelands\" \"\$@\"" >> "$out/bin/widelands"
+    chmod a+x "$out/bin/widelands"
+  '' ["minInit"];
+
+  meta = {
+    description = "Widelands RTS with multiple-goods economy";
+    maintainers = with a.lib.maintainers;
+    [
+      raskin
+    ];
+    platforms = with a.lib.platforms;
+      linux;
+    license = a.lib.licenses.gpl;
+  };
+  passthru = {
+    updateInfo = {
+      downloadPage = "${abort ''Specify download page''}";
+    };
+  };
+}) x
+