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 @@
{ fetchurl, stdenv, openjdk, unzip, makeWrapper }:
{ fetchurl, lib, stdenv, openjdk, unzip, makeWrapper }:
let
version = "1.4.9";
@@ -20,10 +20,10 @@ in stdenv.mkDerivation {
done
'';
meta = {
maintainers = [ stdenv.lib.maintainers.cleverca22 ];
maintainers = [ lib.maintainers.cleverca22 ];
description = "A graphical user interface to programs that play the board game Go and support the Go Text Protocol such as GNU Go";
homepage = "http://gogui.sourceforge.net/";
platforms = stdenv.lib.platforms.unix;
license = stdenv.lib.licenses.gpl3;
platforms = lib.platforms.unix;
license = lib.licenses.gpl3;
};
}