2021-01-27 06:50:30 +01:00
|
|
|
{ lib, stdenvNoCC, mercurial }:
|
2018-12-31 08:10:28 +01:00
|
|
|
{ name ? null
|
|
|
|
, url
|
|
|
|
, rev ? null
|
|
|
|
, md5 ? null
|
|
|
|
, sha256 ? null
|
|
|
|
, fetchSubrepos ? false
|
|
|
|
, preferLocalBuild ? true }:
|
2007-09-04 14:45:00 +02:00
|
|
|
|
2017-03-13 13:31:44 +01:00
|
|
|
if md5 != null then
|
|
|
|
throw "fetchhg does not support md5 anymore, please use sha256"
|
|
|
|
else
|
2009-11-14 21:14:21 +01:00
|
|
|
# TODO: statically check if mercurial as the https support if the url starts woth https.
|
2018-01-10 00:38:19 +01:00
|
|
|
stdenvNoCC.mkDerivation {
|
2012-12-28 19:54:15 +01:00
|
|
|
name = "hg-archive" + (if name != null then "-${name}" else "");
|
2007-09-04 14:45:00 +02:00
|
|
|
builder = ./builder.sh;
|
2018-01-09 21:36:14 +01:00
|
|
|
nativeBuildInputs = [mercurial];
|
2007-09-04 14:45:00 +02:00
|
|
|
|
2021-01-27 06:50:30 +01:00
|
|
|
impureEnvVars = lib.fetchers.proxyImpureEnvVars;
|
2015-04-28 22:35:39 +02:00
|
|
|
|
2015-04-01 16:02:07 +02:00
|
|
|
subrepoClause = if fetchSubrepos then "S" else "";
|
|
|
|
|
2017-03-13 13:31:44 +01:00
|
|
|
outputHashAlgo = "sha256";
|
2007-09-04 14:45:00 +02:00
|
|
|
outputHashMode = "recursive";
|
2017-03-13 13:31:44 +01:00
|
|
|
outputHash = sha256;
|
2015-04-28 22:35:39 +02:00
|
|
|
|
2014-06-28 20:33:28 +02:00
|
|
|
inherit url rev;
|
2018-12-31 08:10:28 +01:00
|
|
|
inherit preferLocalBuild;
|
2007-09-04 14:45:00 +02:00
|
|
|
}
|