mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 08:23:09 +00:00
ezquake: remove with statements
This commit is contained in:
parent
479dd4d050
commit
979820ea65
@ -20,9 +20,9 @@ stdenv.mkDerivation rec {
|
||||
expat curl jansson libpng libjpeg libGLU libGL libsndfile libXxf86vm pcre SDL2 vim speex
|
||||
];
|
||||
|
||||
installPhase = with lib; let
|
||||
sys = last (splitString "-" stdenv.hostPlatform.system);
|
||||
arch = head (splitString "-" stdenv.hostPlatform.system);
|
||||
installPhase = let
|
||||
sys = lib.last (lib.splitString "-" stdenv.hostPlatform.system);
|
||||
arch = lib.head (lib.splitString "-" stdenv.hostPlatform.system);
|
||||
in ''
|
||||
mkdir -p $out/bin
|
||||
find .
|
||||
@ -31,12 +31,12 @@ stdenv.mkDerivation rec {
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
meta = with lib; {
|
||||
meta = {
|
||||
homepage = "https://ezquake.com/";
|
||||
description = "Modern QuakeWorld client focused on competitive online play";
|
||||
mainProgram = "ezquake";
|
||||
license = licenses.gpl2Plus;
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ edwtjo ];
|
||||
license = lib.licenses.gpl2Plus;
|
||||
platforms = lib.platforms.linux;
|
||||
maintainers = with lib.maintainers; [ edwtjo ];
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user