2015-01-01 16:34:56 +03:00
|
|
|
{stdenv, git, cacert}: let
|
|
|
|
urlToName = url: rev: let
|
2015-01-13 21:43:08 +03:00
|
|
|
base = baseNameOf (stdenv.lib.removeSuffix "/" url);
|
2015-01-01 16:34:56 +03:00
|
|
|
|
2015-01-13 21:43:08 +03:00
|
|
|
matched = builtins.match "(.*).git" base;
|
2015-01-01 16:34:56 +03:00
|
|
|
|
|
|
|
short = builtins.substring 0 7 rev;
|
|
|
|
|
|
|
|
appendShort = if (builtins.match "[a-f0-9]*" rev) != null
|
|
|
|
then "-${short}"
|
|
|
|
else "";
|
|
|
|
in "${if matched == null then base else builtins.head matched}${appendShort}";
|
2015-01-13 21:43:08 +03:00
|
|
|
in
|
|
|
|
{ url, rev ? "HEAD", md5 ? "", sha256 ? "", leaveDotGit ? false
|
2015-01-01 16:34:56 +03:00
|
|
|
, fetchSubmodules ? true
|
|
|
|
, name ? urlToName url rev
|
2014-09-03 21:48:15 +04:00
|
|
|
}:
|
2009-06-24 16:48:01 +04:00
|
|
|
|
2009-11-08 06:02:10 +03:00
|
|
|
/* NOTE:
|
|
|
|
fetchgit has one problem: git fetch only works for refs.
|
|
|
|
This is because fetching arbitrary (maybe dangling) commits may be a security risk
|
|
|
|
and checking whether a commit belongs to a ref is expensive. This may
|
|
|
|
change in the future when some caching is added to git (?)
|
|
|
|
Usually refs are either tags (refs/tags/*) or branches (refs/heads/*)
|
|
|
|
Cloning branches will make the hash check fail when there is an update.
|
|
|
|
But not all patches we want can be accessed by tags.
|
|
|
|
|
|
|
|
The workaround is getting the last n commits so that it's likly that they
|
|
|
|
still contain the hash we want.
|
|
|
|
|
|
|
|
for now : increase depth iteratively (TODO)
|
|
|
|
|
|
|
|
real fix: ask git folks to add a
|
|
|
|
git fetch $HASH contained in $BRANCH
|
|
|
|
facility because checking that $HASH is contained in $BRANCH is less
|
|
|
|
expensive than fetching --depth $N.
|
|
|
|
Even if git folks implemented this feature soon it may take years until
|
|
|
|
server admins start using the new version?
|
|
|
|
*/
|
|
|
|
|
2014-02-18 22:11:57 +04:00
|
|
|
assert md5 != "" || sha256 != "";
|
|
|
|
|
2009-06-24 16:48:01 +04:00
|
|
|
stdenv.mkDerivation {
|
2014-09-03 21:48:15 +04:00
|
|
|
inherit name;
|
2009-06-24 16:48:01 +04:00
|
|
|
builder = ./builder.sh;
|
2011-08-20 18:29:57 +04:00
|
|
|
fetcher = ./nix-prefetch-git;
|
2009-06-24 16:48:01 +04:00
|
|
|
buildInputs = [git];
|
|
|
|
|
|
|
|
outputHashAlgo = if sha256 == "" then "md5" else "sha256";
|
|
|
|
outputHashMode = "recursive";
|
|
|
|
outputHash = if sha256 == "" then md5 else sha256;
|
|
|
|
|
2014-03-23 20:19:39 +04:00
|
|
|
inherit url rev leaveDotGit fetchSubmodules;
|
2009-06-24 16:48:01 +04:00
|
|
|
|
2011-08-28 20:03:14 +04:00
|
|
|
GIT_SSL_CAINFO = "${cacert}/etc/ca-bundle.crt";
|
|
|
|
|
2009-06-24 16:48:01 +04: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"
|
|
|
|
];
|
2014-02-11 00:03:17 +04:00
|
|
|
|
|
|
|
preferLocalBuild = true;
|
2009-06-24 16:48:01 +04:00
|
|
|
}
|
|
|
|
|