forked from lix-project/lix
corepkgs/fetchurl: the 'system' argument can be optional
This commit is contained in:
parent
543bf742c9
commit
53f52c2111
|
@ -3,7 +3,7 @@ with import <nix/config.nix>;
|
||||||
# Argh, this thing is duplicated (more-or-less) in Nixpkgs. Need to
|
# Argh, this thing is duplicated (more-or-less) in Nixpkgs. Need to
|
||||||
# find a way to combine them.
|
# find a way to combine them.
|
||||||
|
|
||||||
{system, url, outputHash ? "", outputHashAlgo ? "", md5 ? "", sha1 ? "", sha256 ? ""}:
|
{system ? builtins.currentSystem, url, outputHash ? "", outputHashAlgo ? "", md5 ? "", sha1 ? "", sha256 ? ""}:
|
||||||
|
|
||||||
assert (outputHash != "" && outputHashAlgo != "")
|
assert (outputHash != "" && outputHashAlgo != "")
|
||||||
|| md5 != "" || sha1 != "" || sha256 != "";
|
|| md5 != "" || sha1 != "" || sha256 != "";
|
||||||
|
|
Loading…
Reference in a new issue