nixpkgs/pkgs/games/xpilot/default.nix
Silvan Mosberger f5fa5fa4d6 pkgs: refactor needless quoting of homepage meta attribute (#27809)
* pkgs: refactor needless quoting of homepage meta attribute

A lot of packages are needlessly quoting the homepage meta attribute
(about 1400, 22%), this commit refactors all of those instances.

* pkgs: Fixing some links that were wrongfully unquoted in the previous
commit

* Fixed some instances
2017-08-01 22:03:30 +02:00

24 lines
710 B
Nix

{stdenv, fetchurl, libX11, libSM, SDL, mesa, expat, SDL_ttf, SDL_image, zlib}:
let
buildInputs = [
libX11 libSM SDL SDL_ttf SDL_image mesa expat zlib
];
in
stdenv.mkDerivation rec {
version = "4.7.3";
name = "xpilot-ng-${version}";
inherit buildInputs;
src = fetchurl {
url = "mirror://sourceforge/xpilot/xpilot_ng/${name}/${name}.tar.gz";
sha256 = "02a7pnp88kh88fzda5q8mzlckk6y9r5fw47j00h26wbsfly0k1zj";
};
meta = {
inherit version;
description = ''A multiplayer X11 space combat game'';
homepage = http://xpilot.sf.net/;
license = stdenv.lib.licenses.gpl2Plus ;
maintainers = [stdenv.lib.maintainers.raskin];
platforms = stdenv.lib.platforms.linux;
};
}