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
+4
View File
@@ -84,6 +84,9 @@ in
, # Meta information, if any. , # Meta information, if any.
meta ? {} meta ? {}
# Passthru information, if any.
, passthru ? {}
}: }:
assert builtins.isList urls; assert builtins.isList urls;
@@ -139,4 +142,5 @@ else stdenv.mkDerivation {
''; '';
inherit meta; inherit meta;
inherit passthru;
} }