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
+4 -4
View File
@@ -1,4 +1,4 @@
{ stdenv, fetchurl, SDL_mixer, SDL, autoreconfHook }:
{ lib, stdenv, fetchurl, SDL_mixer, SDL, autoreconfHook }:
stdenv.mkDerivation {
name = "ri_li-2.0.1";
@@ -17,14 +17,14 @@ stdenv.mkDerivation {
meta = {
homepage = "http://ri-li.sourceforge.net";
license = stdenv.lib.licenses.gpl2Plus;
license = lib.licenses.gpl2Plus;
description = "A children's train game";
longDescription = ''
Ri-li is an arcade game licensed under the GPL (General Public License).
You drive a toy wood engine in many levels and you must collect all the coaches
to win.
'';
maintainers = with stdenv.lib.maintainers; [ jcumming ];
platforms = with stdenv.lib.platforms; linux;
maintainers = with lib.maintainers; [ jcumming ];
platforms = with lib.platforms; linux;
};
}