2015-04-01 14:02:07 +00:00
|
|
|
{stdenv, mercurial, nix}: {name ? null, url, rev ? null, md5 ? null, sha256 ? null, fetchSubrepos ? false}:
|
2007-09-04 12:45:00 +00:00
|
|
|
|
2009-11-14 20:14:21 +00:00
|
|
|
# TODO: statically check if mercurial as the https support if the url starts woth https.
|
2007-09-04 12:45:00 +00:00
|
|
|
stdenv.mkDerivation {
|
2012-12-28 18:54:15 +00:00
|
|
|
name = "hg-archive" + (if name != null then "-${name}" else "");
|
2007-09-04 12:45:00 +00:00
|
|
|
builder = ./builder.sh;
|
2012-08-24 15:10:23 +00:00
|
|
|
buildInputs = [mercurial];
|
2007-09-04 12:45:00 +00:00
|
|
|
|
2016-09-17 19:50:01 +00:00
|
|
|
impureEnvVars = stdenv.lib.fetchers.proxyImpureEnvVars;
|
2015-04-28 20:35:39 +00:00
|
|
|
|
2007-09-04 12:45:00 +00:00
|
|
|
# Nix <= 0.7 compatibility.
|
|
|
|
id = md5;
|
|
|
|
|
2015-04-01 14:02:07 +00:00
|
|
|
subrepoClause = if fetchSubrepos then "S" else "";
|
|
|
|
|
2012-12-28 18:54:15 +00:00
|
|
|
outputHashAlgo = if md5 != null then "md5" else "sha256";
|
2007-09-04 12:45:00 +00:00
|
|
|
outputHashMode = "recursive";
|
2012-12-28 18:54:15 +00:00
|
|
|
outputHash = if md5 != null then md5 else sha256;
|
2015-04-28 20:35:39 +00:00
|
|
|
|
2014-06-28 18:33:28 +00:00
|
|
|
inherit url rev;
|
2012-01-10 06:41:44 +00:00
|
|
|
preferLocalBuild = true;
|
2007-09-04 12:45:00 +00:00
|
|
|
}
|