summary refs log tree commit diff
path: root/pkgs/games/crrcsim
diff options
context:
space:
mode:
authorMoritz Ulrich <moritz@tarn-vedra.de>2014-05-28 13:04:16 +0200
committerMoritz Ulrich <moritz@tarn-vedra.de>2014-05-28 13:04:16 +0200
commitc4349c3b17f95ab2c3897dc22d2f852dbc7e27da (patch)
tree1fa02a604c8eba0436e9daa522e59a0ec9a8e48a /pkgs/games/crrcsim
parent1d70298e2e203021bafac8708120607e63aa3590 (diff)
downloadnixpkgs-c4349c3b17f95ab2c3897dc22d2f852dbc7e27da.tar
nixpkgs-c4349c3b17f95ab2c3897dc22d2f852dbc7e27da.tar.gz
nixpkgs-c4349c3b17f95ab2c3897dc22d2f852dbc7e27da.tar.bz2
nixpkgs-c4349c3b17f95ab2c3897dc22d2f852dbc7e27da.tar.lz
nixpkgs-c4349c3b17f95ab2c3897dc22d2f852dbc7e27da.tar.xz
nixpkgs-c4349c3b17f95ab2c3897dc22d2f852dbc7e27da.tar.zst
nixpkgs-c4349c3b17f95ab2c3897dc22d2f852dbc7e27da.zip
crrcsim: Update to 0.9.12 & simplify.
Diffstat (limited to 'pkgs/games/crrcsim')
-rw-r--r--pkgs/games/crrcsim/default.nix54
1 files changed, 15 insertions, 39 deletions
diff --git a/pkgs/games/crrcsim/default.nix b/pkgs/games/crrcsim/default.nix
index a080436bbe0..944b67041c2 100644
--- a/pkgs/games/crrcsim/default.nix
+++ b/pkgs/games/crrcsim/default.nix
@@ -1,48 +1,24 @@
-x@{builderDefsPackage
-  , mesa, SDL, SDL_mixer, plib, libjpeg
-  , ...}:
-builderDefsPackage
-(a :  
-let 
-  helperArgNames = ["stdenv" "fetchurl" "builderDefsPackage"] ++ 
-    [];
-
-  buildInputs = map (n: builtins.getAttr n x)
-    (builtins.attrNames (builtins.removeAttrs x helperArgNames));
-  sourceInfo = rec {
-    baseName="crrcsim";
-    version="0.9.11";
-    name="${baseName}-${version}";
-    url="mirror://sourceforge/${baseName}.berlios/${name}.tar.gz";
-    hash="16z9gixp60920lqckij8kdw90jys0llls4lw5c8vqgk14ck5hhiz";
-  };
+{ stdenv, fetchurl, mesa, SDL, SDL_mixer, plib, libjpeg }:
+let
+  version = "0.9.12";
 in
-rec {
-  src = a.fetchurl {
-    url = sourceInfo.url;
-    sha256 = sourceInfo.hash;
+stdenv.mkDerivation rec {
+  name = "crrcsim-${version}";
+
+  src = fetchurl {
+    url = "mirror://sourceforge/crrcsim/${name}.tar.gz";
+    sha256 = "1yx3cn7ilwj92v6rk3zm565ap92vmky4r39na814lfglkzn6l5id";
   };
 
-  inherit (sourceInfo) name version;
-  inherit buildInputs;
+  buildInputs = [
+    mesa SDL SDL_mixer plib libjpeg
+  ];
 
-  /* doConfigure should be removed if not needed */
-  phaseNames = ["doConfigure" "doMakeInstall"];
-      
   meta = {
     description = "A model-airplane flight simulator";
-    maintainers = with a.lib.maintainers;
-    [
-      raskin
-    ];
-    platforms = with a.lib.platforms;
-      linux;
+    maintainers = with stdenv.lib.maintainers; [ raskin the-kenny ];
+    platforms = stdenv.lib.platforms.linux;
     license = "GPLv2";
   };
-  passthru = {
-    updateInfo = {
-      downloadPage = "http://crrcsim.berlios.de/wiki/index.php?n=CRRCsim.DownLoad"; #TODO: berlios shut down
-    };
-  };
-}) x
+}