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
+3 -3
View File
@@ -1,8 +1,8 @@
{ stdenv, fetchurl, tcl, tk, libX11, makeWrapper }:
{ lib, stdenv, fetchurl, tcl, tk, libX11, makeWrapper }:
stdenv.mkDerivation {
name = "chessdb-3.6.19-beta-1";
src = fetchurl {
url = "mirror://sourceforge/chessdb/ChessDB-3.6.19-beta-1.tar.gz";
sha256 = "0brc3wln3bxp979iqj2w1zxpfd0pch8zzazhdmwf7acww4hrsz62";
@@ -25,6 +25,6 @@ stdenv.mkDerivation {
meta = {
homepage = "http://chessdb.sourceforge.net/";
description = "A free chess database";
platforms = stdenv.lib.platforms.linux;
platforms = lib.platforms.linux;
};
}