pkgs/development/compilers: stdenv.lib -> lib

This commit is contained in:
Ben Siraphob
2021-01-23 08:57:37 +07:00
parent bbaff89ceb
commit acc5f7b18a
320 changed files with 1660 additions and 1657 deletions
+2 -2
View File
@@ -1,4 +1,4 @@
{stdenv, fetchFromGitHub, bison, flex, pkg-config, libpng}:
{lib, stdenv, fetchFromGitHub, bison, flex, pkg-config, libpng}:
# TODO: byacc is the recommended parser generator but due to https://github.com/rednex/rgbds/issues/333
# it does not work for the moment. We should switch back to byacc as soon as the fix is integrated
@@ -16,7 +16,7 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ bison flex pkg-config libpng ];
installFlags = [ "PREFIX=\${out}" ];
meta = with stdenv.lib; {
meta = with lib; {
homepage = "https://rednex.github.io/rgbds/";
description = "A free assembler/linker package for the Game Boy and Game Boy Color";
license = licenses.mit;