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, fetchFromGitHub, SDL, which, installTool ? false }:
{ lib, stdenv, fetchFromGitHub, SDL, which, installTool ? false }:
stdenv.mkDerivation rec {
pname = "azimuth";
@@ -41,10 +41,10 @@ stdenv.mkDerivation rec {
bosses to tangle with.
'';
license = stdenv.lib.licenses.gpl3Plus;
license = lib.licenses.gpl3Plus;
homepage = "https://mdsteele.games/azimuth/index.html";
maintainers = with stdenv.lib.maintainers; [ marius851000 ];
platforms = stdenv.lib.platforms.linux;
maintainers = with lib.maintainers; [ marius851000 ];
platforms = lib.platforms.linux;
};
}