summaryrefslogtreecommitdiffstats
path: root/pkgs/development/compilers/cmucl
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/cmucl
parentbbaff89ceb389e9c21a90eefac60ebc9853144be (diff)
pkgs/development/compilers: stdenv.lib -> lib
Diffstat (limited to 'pkgs/development/compilers/cmucl')
-rw-r--r--pkgs/development/compilers/cmucl/binary.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/development/compilers/cmucl/binary.nix b/pkgs/development/compilers/cmucl/binary.nix
index 480a7e522b53..b09f5f41b67a 100644
--- a/pkgs/development/compilers/cmucl/binary.nix
+++ b/pkgs/development/compilers/cmucl/binary.nix
@@ -1,4 +1,4 @@
-{stdenv, fetchurl}:
+{lib, stdenv, fetchurl}:
let
inherit (stdenv.hostPlatform) system;
@@ -36,9 +36,9 @@ stdenv.mkDerivation {
which runs on most major Unix platforms. It mainly conforms to the
ANSI Common Lisp standard.
'';
- license = stdenv.lib.licenses.free; # public domain
+ license = lib.licenses.free; # public domain
homepage = "http://www.cons.org/cmucl/";
- maintainers = [stdenv.lib.maintainers.tohl];
- platforms = stdenv.lib.platforms.linux;
+ maintainers = [lib.maintainers.tohl];
+ platforms = lib.platforms.linux;
};
}