tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
fetchdocker: fix missing lib
Artturin
2 years ago
4b0c2651
5bf82c5a
+2
-1
2 changed files
expand all
collapse all
unified
split
pkgs
build-support
fetchdocker
credentials.nix
generic-fetcher.nix
+1
pkgs/build-support/fetchdocker/credentials.nix
···
1
1
+
{ lib }:
1
2
# We provide three paths to get the credentials into the builder's
2
3
# environment:
3
4
#
+1
-1
pkgs/build-support/fetchdocker/generic-fetcher.nix
···
1
1
{ stdenv, lib, haskellPackages, writeText, gawk }:
2
2
let
3
3
awk = "${gawk}/bin/awk";
4
4
-
dockerCredentialsFile = import ./credentials.nix;
4
4
+
dockerCredentialsFile = import ./credentials.nix { inherit lib; };
5
5
in
6
6
{ fetcher
7
7
, name