mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 04:02:55 +03:00
Adding warmux
svn path=/nixpkgs/trunk/; revision=25997
This commit is contained in:
parent
7c339958f9
commit
479fc3a1d4
50
pkgs/games/warmux/default.nix
Normal file
50
pkgs/games/warmux/default.nix
Normal file
@ -0,0 +1,50 @@
|
||||
x@{builderDefsPackage
|
||||
, curl, gnutls, fribidi, libpng, SDL, SDL_gfx, SDL_image, SDL_mixer
|
||||
, SDL_net, SDL_ttf, libunwind, libX11, xproto, libxml2, pkgconfig
|
||||
, gettext, intltool, libtool, perl
|
||||
, ...}:
|
||||
builderDefsPackage
|
||||
(a :
|
||||
let
|
||||
helperArgNames = ["stdenv" "fetchurl" "builderDefsPackage"] ++
|
||||
[];
|
||||
|
||||
buildInputs = map (n: builtins.getAttr n x)
|
||||
(builtins.attrNames (builtins.removeAttrs x helperArgNames));
|
||||
sourceInfo = rec {
|
||||
baseName="warmux";
|
||||
version="11.01";
|
||||
name="${baseName}-${version}";
|
||||
url="http://download.gna.org/${baseName}/${name}.tar.bz2";
|
||||
hash="1f063yaab08gflh4hnd8clb4as41ayfphi4q0cmi8syjiaap2qgh";
|
||||
};
|
||||
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" "doMakeInstall"];
|
||||
|
||||
meta = {
|
||||
description = "Ballistics turn-based battle game between teams";
|
||||
maintainers = with a.lib.maintainers;
|
||||
[
|
||||
raskin
|
||||
];
|
||||
platforms = with a.lib.platforms;
|
||||
linux;
|
||||
license = a.lib.licenses.gpl2;
|
||||
};
|
||||
passthru = {
|
||||
updateInfo = {
|
||||
downloadPage = "http://download.gna.org/warmux/";
|
||||
};
|
||||
};
|
||||
}) x
|
||||
|
@ -7098,6 +7098,8 @@ let
|
||||
|
||||
ut2004demo = callPackage ../games/ut2004demo { };
|
||||
|
||||
warmux = callPackage ../games/warmux {};
|
||||
|
||||
warsow = callPackage ../games/warsow {
|
||||
libjpeg = libjpeg62;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user