2018-07-21 00:44:44 +00:00
|
|
|
{stdenvNoCC, darcs, cacert}:
|
2017-04-26 19:54:15 +00:00
|
|
|
|
|
|
|
{url, rev ? null, context ? null, md5 ? "", sha256 ? ""}:
|
2006-01-30 11:18:38 +00:00
|
|
|
|
2017-03-13 12:31:44 +00:00
|
|
|
if md5 != "" then
|
|
|
|
throw "fetchdarcs does not support md5 anymore, please use sha256"
|
|
|
|
else
|
2018-01-09 23:38:19 +00:00
|
|
|
stdenvNoCC.mkDerivation {
|
2006-01-30 11:18:38 +00:00
|
|
|
name = "fetchdarcs";
|
|
|
|
builder = ./builder.sh;
|
2018-01-14 19:18:27 +00:00
|
|
|
nativeBuildInputs = [cacert darcs];
|
2006-01-30 11:18:38 +00:00
|
|
|
|
2017-03-13 12:31:44 +00:00
|
|
|
outputHashAlgo = "sha256";
|
2006-01-30 11:18:38 +00:00
|
|
|
outputHashMode = "recursive";
|
2017-03-13 12:31:44 +00:00
|
|
|
outputHash = sha256;
|
|
|
|
|
2014-06-28 18:33:28 +00:00
|
|
|
inherit url rev context;
|
2006-01-30 11:18:38 +00:00
|
|
|
}
|