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

This commit is contained in:
Ben Siraphob
2021-01-23 20:15:07 +07:00
parent f6a583eeec
commit 001c0cbe54
101 changed files with 350 additions and 350 deletions

View File

@@ -1,6 +1,6 @@
{ stdenv, fetchurl, pkg-config, doxygen, cmake, readline }:
{ lib, stdenv, fetchurl, pkg-config, doxygen, cmake, readline }:
with stdenv.lib;
with lib;
stdenv.mkDerivation rec {
pname = "lolcode";
@@ -26,7 +26,7 @@ stdenv.mkDerivation rec {
'';
license = licenses.gpl3;
maintainers = [ maintainers.AndersonTorres ];
platforms = stdenv.lib.platforms.unix;
platforms = lib.platforms.unix;
};
}