fetchmtn: support hash
attribute
This commit is contained in:
parent
3f7f5df38a
commit
54209fcd9e
@ -1,20 +1,19 @@
|
||||
# You can specify some extra mirrors and a cache DB via options
|
||||
{lib, stdenvNoCC, monotone, defaultDBMirrors ? [], cacheDB ? "./mtn-checkout.db"}:
|
||||
# dbs is a list of strings
|
||||
# each is an url for sync
|
||||
|
||||
lib.fetchers.withNormalizedHash { } (
|
||||
# dbs is a list of strings, each is an url for sync
|
||||
# selector is mtn selector, like h:org.example.branch
|
||||
#
|
||||
{name ? "mtn-checkout", dbs ? [], sha256
|
||||
{name ? "mtn-checkout", dbs ? []
|
||||
, outputHash, outputHashAlgo
|
||||
, selector ? "h:" + branch, branch}:
|
||||
|
||||
stdenvNoCC.mkDerivation {
|
||||
builder = ./builder.sh;
|
||||
nativeBuildInputs = [monotone];
|
||||
|
||||
outputHashAlgo = "sha256";
|
||||
inherit outputHash outputHashAlgo;
|
||||
outputHashMode = "recursive";
|
||||
outputHash = sha256;
|
||||
|
||||
dbs = defaultDBMirrors ++ dbs;
|
||||
inherit branch cacheDB name selector;
|
||||
@ -22,4 +21,4 @@ stdenvNoCC.mkDerivation {
|
||||
impureEnvVars = lib.fetchers.proxyImpureEnvVars;
|
||||
|
||||
}
|
||||
|
||||
)
|
||||
|
Loading…
Reference in New Issue
Block a user