pkgs/games: stdenv.lib -> lib

This commit is contained in:
Ben Siraphob
2021-01-15 13:36:04 +07:00
parent 93e5d99592
commit 2e34288f0d
159 changed files with 457 additions and 465 deletions
+9 -9
View File
@@ -1,5 +1,5 @@
{ stdenv, fetchzip, ncurses, libX11, libXaw, libXt, libXext, libXmu, makeWrapper, writeScript, ... }:
let
{ lib, stdenv, fetchzip, ncurses, libX11, libXaw, libXt, libXext, libXmu, makeWrapper, writeScript, ... }:
let
setup = writeScript "setup" ''
mkdir -p "$ANGBAND_PATH"
# Copy all the data files into place
@@ -26,7 +26,7 @@ stdenv.mkDerivation rec {
prePatch = ''
# Allow usage of ANGBAND_PATH
substituteInPlace config.h --replace "#define FIXED_PATHS" ""
substituteInPlace config.h --replace "#define FIXED_PATHS" ""
'';
preConfigure = ''
@@ -38,7 +38,7 @@ stdenv.mkDerivation rec {
mkdir -p $out/bin
cp sil $out/bin/sil
# Wrap the program to set a user-local ANGBAND_PATH, and run the setup script to copy files into place
# We could just use the options for a user-local save and scores dir, but it tried to write to the
# We could just use the options for a user-local save and scores dir, but it tried to write to the
# lib directory anyway, so we might as well give everyone a copy
wrapProgram $out/bin/sil \
--run "set -u" \
@@ -49,15 +49,15 @@ stdenv.mkDerivation rec {
meta = {
description = "A rouge-like game set in the first age of Middle-earth";
longDescription = ''
A game of adventure set in the first age of Middle-earth, when the world still
A game of adventure set in the first age of Middle-earth, when the world still
rang with elven song and gleamed with dwarven mail.
Walk the dark halls of Angband. Slay creatures black and fell. Wrest a shining
Walk the dark halls of Angband. Slay creatures black and fell. Wrest a shining
Silmaril from Morgoths iron crown.
'';
homepage = "http://www.amirrorclear.net/flowers/game/sil/index.html";
license = stdenv.lib.licenses.gpl2;
maintainers = [ stdenv.lib.maintainers.michaelpj ];
platforms = stdenv.lib.platforms.linux;
license = lib.licenses.gpl2;
maintainers = [ lib.maintainers.michaelpj ];
platforms = lib.platforms.linux;
};
}