2021-01-27 05:50:30 +00:00
|
|
|
{ lib, stdenvNoCC, buildPackages
|
2020-03-09 04:43:44 +00:00
|
|
|
, subversion, glibcLocales, sshSupport ? true, openssh ? null
|
|
|
|
}:
|
|
|
|
|
|
|
|
{ url, rev ? "HEAD", md5 ? "", sha256 ? ""
|
2018-12-31 07:10:28 +00:00
|
|
|
, ignoreExternals ? false, ignoreKeywords ? false, name ? null
|
2020-03-09 04:43:44 +00:00
|
|
|
, preferLocalBuild ? true
|
|
|
|
}:
|
|
|
|
|
|
|
|
assert sshSupport -> openssh != null;
|
2004-04-14 11:55:33 +01:00
|
|
|
|
2009-10-06 14:36:52 +01:00
|
|
|
let
|
2021-01-27 05:50:30 +00:00
|
|
|
repoName = with lib;
|
2009-10-06 14:36:52 +01:00
|
|
|
let
|
|
|
|
fst = head;
|
|
|
|
snd = l: head (tail l);
|
|
|
|
trd = l: head (tail (tail l));
|
2017-03-19 09:42:13 +00:00
|
|
|
path_ =
|
|
|
|
(p: if head p == "" then tail p else p) # ~ drop final slash if any
|
|
|
|
(reverseList (splitString "/" url));
|
2015-08-23 03:09:21 +01:00
|
|
|
path = [ (removeSuffix "/" (head path_)) ] ++ (tail path_);
|
2009-10-06 14:36:52 +01:00
|
|
|
in
|
|
|
|
# ../repo/trunk -> repo
|
|
|
|
if fst path == "trunk" then snd path
|
|
|
|
# ../repo/branches/branch -> repo-branch
|
|
|
|
else if snd path == "branches" then "${trd path}-${fst path}"
|
|
|
|
# ../repo/tags/tag -> repo-tag
|
|
|
|
else if snd path == "tags" then "${trd path}-${fst path}"
|
|
|
|
# ../repo (no trunk) -> repo
|
|
|
|
else fst path;
|
2013-05-23 21:03:07 +01:00
|
|
|
|
|
|
|
name_ = if name == null then "${repoName}-r${toString rev}" else name;
|
2009-10-06 14:36:52 +01:00
|
|
|
in
|
|
|
|
|
2017-03-13 12:31:44 +00:00
|
|
|
if md5 != "" then
|
|
|
|
throw "fetchsvn does not support md5 anymore, please use sha256"
|
|
|
|
else
|
2018-01-09 23:38:19 +00:00
|
|
|
stdenvNoCC.mkDerivation {
|
2013-05-23 21:03:07 +01:00
|
|
|
name = name_;
|
2003-11-25 17:38:48 +00:00
|
|
|
builder = ./builder.sh;
|
2020-03-09 04:43:44 +00:00
|
|
|
nativeBuildInputs = [ subversion glibcLocales ]
|
2021-01-27 05:50:30 +00:00
|
|
|
++ lib.optional sshSupport openssh;
|
2020-03-09 04:43:44 +00:00
|
|
|
|
|
|
|
SVN_SSH = if sshSupport then "${buildPackages.openssh}/bin/ssh" else null;
|
2005-02-22 16:27:28 +00:00
|
|
|
|
2017-03-13 12:31:44 +00:00
|
|
|
outputHashAlgo = "sha256";
|
2005-02-22 21:15:13 +00:00
|
|
|
outputHashMode = "recursive";
|
2017-03-13 12:31:44 +00:00
|
|
|
outputHash = sha256;
|
2017-03-19 09:42:13 +00:00
|
|
|
|
2020-03-09 04:43:44 +00:00
|
|
|
inherit url rev ignoreExternals ignoreKeywords;
|
2009-05-19 18:07:20 +01:00
|
|
|
|
2021-01-27 05:50:30 +00:00
|
|
|
impureEnvVars = lib.fetchers.proxyImpureEnvVars;
|
2018-12-31 07:10:28 +00:00
|
|
|
inherit preferLocalBuild;
|
2003-11-25 17:38:48 +00:00
|
|
|
}
|