1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs synced 2024-10-18 11:32:15 -04:00
nixpkgs/pkgs/build-support/fetchmtn/default.nix
2024-09-17 15:00:28 +00:00

25 lines
707 B
Nix

# You can specify some extra mirrors and a cache DB via options
{lib, stdenvNoCC, monotone, defaultDBMirrors ? [], cacheDB ? "./mtn-checkout.db"}:
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 ? []
, outputHash, outputHashAlgo
, selector ? "h:" + branch, branch}:
stdenvNoCC.mkDerivation {
builder = ./builder.sh;
nativeBuildInputs = [monotone];
inherit outputHash outputHashAlgo;
outputHashMode = "recursive";
dbs = defaultDBMirrors ++ dbs;
inherit branch cacheDB name selector;
impureEnvVars = lib.fetchers.proxyImpureEnvVars;
}
)