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
# environment:
#

View File

@ -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