summary refs log tree commit diff
path: root/pkgs/games/stardust
diff options
context:
space:
mode:
authorMichael Raskin <7c6f434c@mail.ru>2010-11-28 13:16:47 +0000
committerMichael Raskin <7c6f434c@mail.ru>2010-11-28 13:16:47 +0000
commita095746651fc90105f3eabdd69a63308e476f40c (patch)
tree94360d87cf2cb6b97f1ca4a31194e4b7bcfee623 /pkgs/games/stardust
parent1db5a9df76d1fbad40077acc03141782edd900e3 (diff)
downloadnixpkgs-a095746651fc90105f3eabdd69a63308e476f40c.tar
nixpkgs-a095746651fc90105f3eabdd69a63308e476f40c.tar.gz
nixpkgs-a095746651fc90105f3eabdd69a63308e476f40c.tar.bz2
nixpkgs-a095746651fc90105f3eabdd69a63308e476f40c.tar.lz
nixpkgs-a095746651fc90105f3eabdd69a63308e476f40c.tar.xz
nixpkgs-a095746651fc90105f3eabdd69a63308e476f40c.tar.zst
nixpkgs-a095746651fc90105f3eabdd69a63308e476f40c.zip
Add stardust
svn path=/nixpkgs/trunk/; revision=24905
Diffstat (limited to 'pkgs/games/stardust')
-rw-r--r--pkgs/games/stardust/default.nix62
1 files changed, 62 insertions, 0 deletions
diff --git a/pkgs/games/stardust/default.nix b/pkgs/games/stardust/default.nix
new file mode 100644
index 00000000000..c7ee0df6a7a
--- /dev/null
+++ b/pkgs/games/stardust/default.nix
@@ -0,0 +1,62 @@
+x@{builderDefsPackage
+  , zlib, libtiff, libxml2, SDL, xproto, libX11, libXi, inputproto, libXmu
+  , libXext, xextproto, mesa
+  , ...}:
+builderDefsPackage
+(a :  
+let 
+  helperArgNames = ["stdenv" "fetchurl" "builderDefsPackage"] ++ 
+    [];
+
+  buildInputs = map (n: builtins.getAttr n x)
+    (builtins.attrNames (builtins.removeAttrs x helperArgNames));
+  sourceInfo = rec {
+    baseName="stardust";
+    version="0.1.13";
+    name="${baseName}-${version}";
+    url="http://iwar.free.fr/IMG/gz/${name}.tar.gz";
+    hash="19rs9lz5y5g2yiq1cw0j05b11digw40gar6rw8iqc7bk3s8355xp";
+  };
+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 = ["doConfigure" "fixPaths" "doMakeInstall"];
+
+  configureFlags = [
+    "--bindir=$out/bin"
+    "--datadir=$out/share"
+  ];
+  
+  makeFlags = [
+    "bindir=$out/bin"
+    "datadir=$out/share"
+  ];
+
+  fixPaths = a.fullDepEntry (''
+    sed -e "s@#define PACKAGE .*@#define PACKAGE \"stardust\"@" -i config.h
+  '') ["minInit"];
+
+  meta = {
+    description = "Space flight simulator";
+    maintainers = with a.lib.maintainers;
+    [
+      raskin
+    ];
+    platforms = with a.lib.platforms;
+      linux;
+  };
+  passthru = {
+    updateInfo = {
+      downloadPage = "http://iwar.free.fr/article.php3?id_article=6";
+    };
+  };
+}) x
+