summary refs log tree commit diff
path: root/pkgs/development/compilers/adoptopenjdk-bin/jdk-darwin-base.nix
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/adoptopenjdk-bin/jdk-darwin-base.nix
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/adoptopenjdk-bin/jdk-darwin-base.nix')
-rw-r--r--pkgs/development/compilers/adoptopenjdk-bin/jdk-darwin-base.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/compilers/adoptopenjdk-bin/jdk-darwin-base.nix b/pkgs/development/compilers/adoptopenjdk-bin/jdk-darwin-base.nix
index 5e402b2d728..31a7346108e 100644
--- a/pkgs/development/compilers/adoptopenjdk-bin/jdk-darwin-base.nix
+++ b/pkgs/development/compilers/adoptopenjdk-bin/jdk-darwin-base.nix
@@ -1,7 +1,7 @@
 sourcePerArch:
 
 { swingSupport ? true # not used for now
-, stdenv
+, lib, stdenv
 , fetchurl
 }:
 
@@ -43,11 +43,11 @@ let cpuName = stdenv.hostPlatform.parsed.cpu.name;
 
   passthru.home = result;
 
-  meta = with stdenv.lib; {
+  meta = with lib; {
     license = licenses.gpl2Classpath;
     description = "AdoptOpenJDK, prebuilt OpenJDK binary";
     platforms = [ "x86_64-darwin" ]; # some inherit jre.meta.platforms
-    maintainers = with stdenv.lib.maintainers; [ taku0 ];
+    maintainers = with lib.maintainers; [ taku0 ];
   };
 
 }; in result