2013-05-23 20:03:07 +00:00
|
|
|
{stdenv, subversion, sshSupport ? false, openssh ? null}:
|
2017-03-13 03:02:33 +00:00
|
|
|
{url, rev ? "HEAD", md5 ? "", sha256 ? "",
|
|
|
|
ignoreExternals ? false, ignoreKeywords ? false, name ? null}:
|
2004-04-14 10:55:33 +00:00
|
|
|
|
2009-10-06 13:36:52 +00:00
|
|
|
let
|
|
|
|
repoName = with stdenv.lib;
|
|
|
|
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 02:09:21 +00:00
|
|
|
path = [ (removeSuffix "/" (head path_)) ] ++ (tail path_);
|
2009-10-06 13:36:52 +00: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 20:03:07 +00:00
|
|
|
|
|
|
|
name_ = if name == null then "${repoName}-r${toString rev}" else name;
|
2009-10-06 13:36:52 +00:00
|
|
|
in
|
|
|
|
|
2004-04-14 10:55:33 +00:00
|
|
|
stdenv.mkDerivation {
|
2013-05-23 20:03:07 +00:00
|
|
|
name = name_;
|
2003-11-25 17:38:48 +00:00
|
|
|
builder = ./builder.sh;
|
2008-02-29 10:30:29 +00:00
|
|
|
buildInputs = [subversion];
|
2005-02-22 16:27:28 +00:00
|
|
|
|
2008-02-28 22:36:37 +00:00
|
|
|
outputHashAlgo = if sha256 == "" then "md5" else "sha256";
|
2005-02-22 21:15:13 +00:00
|
|
|
outputHashMode = "recursive";
|
2016-11-30 14:14:30 +00:00
|
|
|
outputHash = if sha256 == "" then md5 else sha256;
|
2017-03-19 09:42:13 +00:00
|
|
|
|
2017-03-13 03:02:33 +00:00
|
|
|
inherit url rev sshSupport openssh ignoreExternals ignoreKeywords;
|
2009-05-19 17:07:20 +00:00
|
|
|
|
2016-09-17 19:50:01 +00:00
|
|
|
impureEnvVars = stdenv.lib.fetchers.proxyImpureEnvVars;
|
2014-02-10 20:03:17 +00:00
|
|
|
preferLocalBuild = true;
|
2003-11-25 17:38:48 +00:00
|
|
|
}
|