fetchdocker: fix missing lib

This commit is contained in:
Artturin 2023-10-20 12:45:52 +03:00
parent 5bf82c5a0b
commit 4b0c265153
2 changed files with 2 additions and 1 deletions

View file

@ -1,3 +1,4 @@
{ lib }:
# We provide three paths to get the credentials into the builder's # We provide three paths to get the credentials into the builder's
# environment: # environment:
# #

View file

@ -1,7 +1,7 @@
{ stdenv, lib, haskellPackages, writeText, gawk }: { stdenv, lib, haskellPackages, writeText, gawk }:
let let
awk = "${gawk}/bin/awk"; awk = "${gawk}/bin/awk";
dockerCredentialsFile = import ./credentials.nix; dockerCredentialsFile = import ./credentials.nix { inherit lib; };
in in
{ fetcher { fetcher
, name , name