nixpkgs/pkgs/games/ezquake/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

38 lines
983 B
Nix

{ stdenv, fetchFromGitHub, curl, expat
, jansson, libpng, libjpeg, mesa, pcre
, pkgconfig, SDL2, vimNox }:
stdenv.mkDerivation rec {
name = pname + "-" + version;
pname = "ezquake";
version = "3.0.1";
src = fetchFromGitHub {
owner = "ezQuake";
repo = pname + "-source";
rev = "v" + version;
sha256 = "14wck0r64z5haacp7g7qb2qrbhff3x6jfjmn4268dyb9dl5663f2";
};
buildInputs = [
expat curl jansson libpng libjpeg mesa pcre pkgconfig SDL2 vimNox
];
installPhase = with stdenv.lib; let
sys = last (splitString "-" stdenv.system);
arch = head (splitString "-" stdenv.system);
in ''
mkdir -p $out/bin
find .
mv ezquake-${sys}-${arch} $out/bin/ezquake
'';
meta = with stdenv.lib; {
homepage = http://ezquake.github.io/;
description = "A modern QuakeWorld client focused on competitive online play.";
license = licenses.gpl2;
platforms = platforms.linux;
maintainers = with maintainers; [ edwtjo ];
};
}