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
···
0
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