2008-02-29 11:30:29 +01:00
|
|
|
{stdenv, subversion, sshSupport ? false, openssh ? null}:
|
2007-12-04 23:06:13 +01:00
|
|
|
{url, rev ? "HEAD", md5 ? "", sha256 ? ""}:
|
2004-04-14 12:55:33 +02:00
|
|
|
|
2009-10-06 15:36:52 +02:00
|
|
|
let
|
|
|
|
repoName = with stdenv.lib;
|
|
|
|
let
|
|
|
|
fst = head;
|
|
|
|
snd = l: head (tail l);
|
|
|
|
trd = l: head (tail (tail l));
|
|
|
|
path_ = reverseList (splitString "/" url);
|
|
|
|
path = if head path_ == "" then tail path_ else path_;
|
|
|
|
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;
|
|
|
|
in
|
|
|
|
|
2004-04-14 12:55:33 +02:00
|
|
|
stdenv.mkDerivation {
|
2009-10-06 15:36:52 +02:00
|
|
|
name = "${repoName}-r${toString rev}";
|
2003-11-25 18:38:48 +01:00
|
|
|
builder = ./builder.sh;
|
2008-02-29 11:30:29 +01:00
|
|
|
buildInputs = [subversion];
|
2005-02-22 17:27:28 +01:00
|
|
|
|
2008-02-28 23:36:37 +01:00
|
|
|
outputHashAlgo = if sha256 == "" then "md5" else "sha256";
|
2005-02-22 22:15:13 +01:00
|
|
|
outputHashMode = "recursive";
|
2008-02-28 23:36:37 +01:00
|
|
|
outputHash = if sha256 == "" then md5 else sha256;
|
2005-02-22 17:27:28 +01:00
|
|
|
|
2006-07-17 17:22:20 +02:00
|
|
|
inherit url rev sshSupport openssh;
|
2009-05-19 19:07:20 +02:00
|
|
|
|
|
|
|
impureEnvVars = [
|
|
|
|
# We borrow these environment variables from the caller to allow
|
|
|
|
# easy proxy configuration. This is impure, but a fixed-output
|
|
|
|
# derivation like fetchurl is allowed to do so since its result is
|
|
|
|
# by definition pure.
|
|
|
|
"http_proxy" "https_proxy" "ftp_proxy" "all_proxy" "no_proxy"
|
|
|
|
];
|
2003-11-25 18:38:48 +01:00
|
|
|
}
|