Merge pull request #31271 from FRidh/fetchurl

fetchurl: add passthru
This commit is contained in:
Frederik Rietdijk 2017-11-06 20:41:22 +01:00 committed by GitHub
commit 13cc4f513e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -84,6 +84,9 @@ in
, # Meta information, if any.
meta ? {}
# Passthru information, if any.
, passthru ? {}
}:
assert builtins.isList urls;
@ -139,4 +142,5 @@ else stdenv.mkDerivation {
'';
inherit meta;
inherit passthru;
}