2020-02-02 13:56:11 -08:00
|
|
|
{ stdenvNoCC, git, cacert }: let
|
2015-01-01 05:34:56 -08:00
|
|
|
urlToName = url: rev: let
|
2018-01-09 15:38:19 -08:00
|
|
|
inherit (stdenvNoCC.lib) removeSuffix splitString last;
|
2017-06-18 04:42:39 -07:00
|
|
|
base = last (splitString ":" (baseNameOf (removeSuffix "/" url)));
|
2015-01-01 05:34:56 -08:00
|
|
|
|
2015-01-13 10:43:08 -08:00
|
|
|
matched = builtins.match "(.*).git" base;
|
2015-01-01 05:34:56 -08: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 10:43:08 -08:00
|
|
|
in
|
2015-03-10 04:40:19 -07:00
|
|
|
{ url, rev ? "HEAD", md5 ? "", sha256 ? "", leaveDotGit ? deepClone
|
|
|
|
, fetchSubmodules ? true, deepClone ? false
|
2015-04-20 05:25:14 -07:00
|
|
|
, branchName ? null
|
2015-01-01 05:34:56 -08:00
|
|
|
, name ? urlToName url rev
|
2017-06-03 11:45:51 -07:00
|
|
|
, # Shell code executed after the file has been fetched
|
|
|
|
# successfully. This can do things like check or transform the file.
|
|
|
|
postFetch ? ""
|
2018-12-30 23:10:28 -08:00
|
|
|
, preferLocalBuild ? true
|
2014-09-03 10:48:15 -07:00
|
|
|
}:
|
2009-06-24 05:48:01 -07:00
|
|
|
|
2009-11-07 19:02:10 -08: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.
|
|
|
|
|
2016-11-18 02:56:08 -08:00
|
|
|
The workaround is getting the last n commits so that it's likely that they
|
2009-11-07 19:02:10 -08:00
|
|
|
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?
|
|
|
|
*/
|
|
|
|
|
2015-03-10 04:40:19 -07:00
|
|
|
assert deepClone -> leaveDotGit;
|
2014-02-18 10:11:57 -08:00
|
|
|
|
2017-03-13 05:31:44 -07:00
|
|
|
if md5 != "" then
|
|
|
|
throw "fetchgit does not support md5 anymore, please use sha256"
|
|
|
|
else
|
2018-01-09 15:38:19 -08:00
|
|
|
stdenvNoCC.mkDerivation {
|
2014-09-03 10:48:15 -07:00
|
|
|
inherit name;
|
2009-06-24 05:48:01 -07:00
|
|
|
builder = ./builder.sh;
|
2019-09-08 16:38:31 -07:00
|
|
|
fetcher = ./nix-prefetch-git; # This must be a string to ensure it's called with bash.
|
2018-01-09 12:36:14 -08:00
|
|
|
nativeBuildInputs = [git];
|
2009-06-24 05:48:01 -07:00
|
|
|
|
2017-03-13 05:31:44 -07:00
|
|
|
outputHashAlgo = "sha256";
|
2009-06-24 05:48:01 -07:00
|
|
|
outputHashMode = "recursive";
|
2017-03-13 05:31:44 -07:00
|
|
|
outputHash = sha256;
|
2009-06-24 05:48:01 -07:00
|
|
|
|
2017-06-03 11:45:51 -07:00
|
|
|
inherit url rev leaveDotGit fetchSubmodules deepClone branchName postFetch;
|
2009-06-24 05:48:01 -07:00
|
|
|
|
2015-06-05 13:00:52 -07:00
|
|
|
GIT_SSL_CAINFO = "${cacert}/etc/ssl/certs/ca-bundle.crt";
|
2011-08-28 09:03:14 -07:00
|
|
|
|
2018-01-09 15:38:19 -08:00
|
|
|
impureEnvVars = stdenvNoCC.lib.fetchers.proxyImpureEnvVars ++ [
|
2016-09-17 12:50:01 -07:00
|
|
|
"GIT_PROXY_COMMAND" "SOCKS_SERVER"
|
|
|
|
];
|
2014-02-10 12:03:17 -08:00
|
|
|
|
2018-12-30 23:10:28 -08:00
|
|
|
inherit preferLocalBuild;
|
2009-06-24 05:48:01 -07:00
|
|
|
}
|