summary refs log tree commit diff
path: root/pkgs/development/compilers/rgbds
diff options
context:
space:
mode:
authorBen Siraphob <bensiraphob@gmail.com>2021-01-22 18:25:31 +0700
committerBen Siraphob <bensiraphob@gmail.com>2021-01-23 08:57:37 +0700
commitacc5f7b18a60bc9b1024e5e1882bf7362e6492e6 (patch)
tree597dab74ebab3915ddff291ec6aa4913f4010c68 /pkgs/development/compilers/rgbds
parentbbaff89ceb389e9c21a90eefac60ebc9853144be (diff)
downloadnixpkgs-acc5f7b18a60bc9b1024e5e1882bf7362e6492e6.tar
nixpkgs-acc5f7b18a60bc9b1024e5e1882bf7362e6492e6.tar.gz
nixpkgs-acc5f7b18a60bc9b1024e5e1882bf7362e6492e6.tar.bz2
nixpkgs-acc5f7b18a60bc9b1024e5e1882bf7362e6492e6.tar.lz
nixpkgs-acc5f7b18a60bc9b1024e5e1882bf7362e6492e6.tar.xz
nixpkgs-acc5f7b18a60bc9b1024e5e1882bf7362e6492e6.tar.zst
nixpkgs-acc5f7b18a60bc9b1024e5e1882bf7362e6492e6.zip
pkgs/development/compilers: stdenv.lib -> lib
Diffstat (limited to 'pkgs/development/compilers/rgbds')
-rw-r--r--pkgs/development/compilers/rgbds/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/compilers/rgbds/default.nix b/pkgs/development/compilers/rgbds/default.nix
index 4c8a4cfd4ef..6bc74971c4e 100644
--- a/pkgs/development/compilers/rgbds/default.nix
+++ b/pkgs/development/compilers/rgbds/default.nix
@@ -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;