mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 22:43:01 +00:00
fetchdocker: fix missing lib
This commit is contained in:
parent
5bf82c5a0b
commit
4b0c265153
@ -1,3 +1,4 @@
|
||||
{ lib }:
|
||||
# We provide three paths to get the credentials into the builder's
|
||||
# environment:
|
||||
#
|
||||
|
@ -1,7 +1,7 @@
|
||||
{ stdenv, lib, haskellPackages, writeText, gawk }:
|
||||
let
|
||||
awk = "${gawk}/bin/awk";
|
||||
dockerCredentialsFile = import ./credentials.nix;
|
||||
dockerCredentialsFile = import ./credentials.nix { inherit lib; };
|
||||
in
|
||||
{ fetcher
|
||||
, name
|
||||
|
Loading…
Reference in New Issue
Block a user