stardust: use stdenv

This replaces use of builderDefsPackage (#4210).
This commit is contained in:
Robert Helgesson 2015-12-29 15:16:12 +01:00
parent 281b584e4a
commit 73184f5f59

View File

@ -1,62 +1,31 @@
x@{builderDefsPackage { stdenv, fetchurl, zlib, libtiff, libxml2, SDL, xproto, libX11
, zlib, libtiff, libxml2, SDL, xproto, libX11, libXi, inputproto, libXmu , libXi, inputproto, libXmu, libXext, xextproto, mesa }:
, libXext, xextproto, mesa
, ...}:
builderDefsPackage
(a :
let
helperArgNames = ["stdenv" "fetchurl" "builderDefsPackage"] ++
[];
buildInputs = map (n: builtins.getAttr n x) stdenv.mkDerivation rec {
(builtins.attrNames (builtins.removeAttrs x helperArgNames)); name = "stardust-${version}";
sourceInfo = rec {
baseName="stardust";
version = "0.1.13"; version = "0.1.13";
name="${baseName}-${version}";
src = fetchurl {
url = "http://iwar.free.fr/IMG/gz/${name}.tar.gz"; url = "http://iwar.free.fr/IMG/gz/${name}.tar.gz";
hash="19rs9lz5y5g2yiq1cw0j05b11digw40gar6rw8iqc7bk3s8355xp"; sha256 = "19rs9lz5y5g2yiq1cw0j05b11digw40gar6rw8iqc7bk3s8355xp";
};
in
rec {
src = a.fetchurl {
url = sourceInfo.url;
sha256 = sourceInfo.hash;
}; };
inherit (sourceInfo) name version; buildInputs = [
inherit buildInputs; zlib libtiff libxml2 SDL xproto libX11 libXi inputproto
libXmu libXext xextproto mesa
/* doConfigure should be removed if not needed */
phaseNames = ["doConfigure" "fixPaths" "doMakeInstall"];
configureFlags = [
"--bindir=$out/bin"
"--datadir=$out/share"
]; ];
makeFlags = [ installFlags = [ "bindir=\${out}/bin" ];
"bindir=$out/bin"
"datadir=$out/share"
];
fixPaths = a.fullDepEntry ('' postConfigure = ''
sed -e "s@#define PACKAGE .*@#define PACKAGE \"stardust\"@" -i config.h substituteInPlace config.h \
'') ["minInit"]; --replace '#define PACKAGE ""' '#define PACKAGE "stardust"'
'';
meta = { meta = with stdenv.lib; {
description = "Space flight simulator"; description = "Space flight simulator";
maintainers = with a.lib.maintainers; maintainers = [ maintainers.raskin ];
[ platforms = platforms.linux;
raskin license = licenses.gpl2Plus;
];
platforms = with a.lib.platforms;
linux;
}; };
passthru = { }
updateInfo = {
downloadPage = "http://iwar.free.fr/article.php3?id_article=6";
};
};
}) x