fetchdocker: fix missing lib

Artturin 4b0c2651 5bf82c5a

+2 -1
+1
pkgs/build-support/fetchdocker/credentials.nix
··· 1 # We provide three paths to get the credentials into the builder's 2 # environment: 3 #
··· 1 + { lib }: 2 # We provide three paths to get the credentials into the builder's 3 # environment: 4 #
+1 -1
pkgs/build-support/fetchdocker/generic-fetcher.nix
··· 1 { stdenv, lib, haskellPackages, writeText, gawk }: 2 let 3 awk = "${gawk}/bin/awk"; 4 - dockerCredentialsFile = import ./credentials.nix; 5 in 6 { fetcher 7 , name
··· 1 { stdenv, lib, haskellPackages, writeText, gawk }: 2 let 3 awk = "${gawk}/bin/awk"; 4 + dockerCredentialsFile = import ./credentials.nix { inherit lib; }; 5 in 6 { fetcher 7 , name