2019-01-26 15:06:25 +00:00
|
|
|
{ lib, fetchgit, fetchzip }:
|
|
|
|
|
2022-02-10 13:40:58 +00:00
|
|
|
lib.makeOverridable (
|
2019-01-26 15:06:25 +00:00
|
|
|
{ owner, repo, rev, name ? "source"
|
2020-12-21 12:17:01 +00:00
|
|
|
, fetchSubmodules ? false, leaveDotGit ? null
|
2021-09-26 13:41:34 +00:00
|
|
|
, deepClone ? false, private ? false, forceFetchGit ? false
|
2022-11-07 18:44:08 +00:00
|
|
|
, sparseCheckout ? []
|
2019-01-26 15:06:25 +00:00
|
|
|
, githubBase ? "github.com", varPrefix ? null
|
2022-02-10 00:25:42 +00:00
|
|
|
, meta ? { }
|
2019-01-26 15:06:25 +00:00
|
|
|
, ... # For hash agility
|
2020-12-21 12:17:01 +00:00
|
|
|
}@args:
|
2022-02-10 00:25:42 +00:00
|
|
|
|
2019-01-26 15:06:25 +00:00
|
|
|
let
|
2022-02-10 00:53:15 +00:00
|
|
|
|
|
|
|
position = (if args.meta.description or null != null
|
|
|
|
then builtins.unsafeGetAttrPos "description" args.meta
|
|
|
|
else builtins.unsafeGetAttrPos "rev" args
|
|
|
|
);
|
2019-01-26 15:06:25 +00:00
|
|
|
baseUrl = "https://${githubBase}/${owner}/${repo}";
|
2022-02-10 00:53:15 +00:00
|
|
|
newMeta = meta // {
|
|
|
|
homepage = meta.homepage or baseUrl;
|
2023-12-31 11:40:48 +00:00
|
|
|
} // lib.optionalAttrs (position != null) {
|
2022-02-10 00:53:15 +00:00
|
|
|
# to indicate where derivation originates, similar to make-derivation.nix's mkDerivation
|
|
|
|
position = "${position.file}:${toString position.line}";
|
|
|
|
};
|
2021-11-11 16:28:35 +00:00
|
|
|
passthruAttrs = removeAttrs args [ "owner" "repo" "rev" "fetchSubmodules" "forceFetchGit" "private" "githubBase" "varPrefix" ];
|
2023-06-24 18:19:19 +00:00
|
|
|
varBase = "NIX${lib.optionalString (varPrefix != null) "_${varPrefix}"}_GITHUB_PRIVATE_";
|
2023-06-04 08:04:31 +00:00
|
|
|
useFetchGit = fetchSubmodules || (leaveDotGit == true) || deepClone || forceFetchGit || (sparseCheckout != []);
|
2019-01-26 15:06:25 +00:00
|
|
|
# We prefer fetchzip in cases we don't need submodules as the hash
|
|
|
|
# is more stable in that case.
|
2024-01-30 11:21:13 +00:00
|
|
|
fetcher =
|
|
|
|
if useFetchGit then fetchgit
|
|
|
|
# fetchzip may not be overridable when using external tools, for example nix-prefetch
|
|
|
|
else if fetchzip ? override then fetchzip.override { withUnzip = false; }
|
|
|
|
else fetchzip;
|
2019-01-26 15:06:25 +00:00
|
|
|
privateAttrs = lib.optionalAttrs private {
|
|
|
|
netrcPhase = ''
|
|
|
|
if [ -z "''$${varBase}USERNAME" -o -z "''$${varBase}PASSWORD" ]; then
|
|
|
|
echo "Error: Private fetchFromGitHub requires the nix building process (nix-daemon in multi user mode) to have the ${varBase}USERNAME and ${varBase}PASSWORD env vars set." >&2
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
cat > netrc <<EOF
|
|
|
|
machine ${githubBase}
|
|
|
|
login ''$${varBase}USERNAME
|
|
|
|
password ''$${varBase}PASSWORD
|
|
|
|
EOF
|
|
|
|
'';
|
|
|
|
netrcImpureEnvVars = [ "${varBase}USERNAME" "${varBase}PASSWORD" ];
|
|
|
|
};
|
2022-05-24 16:03:46 +00:00
|
|
|
|
|
|
|
gitRepoUrl = "${baseUrl}.git";
|
|
|
|
|
2020-12-21 12:17:01 +00:00
|
|
|
fetcherArgs = (if useFetchGit
|
|
|
|
then {
|
2022-05-24 16:03:46 +00:00
|
|
|
inherit rev deepClone fetchSubmodules sparseCheckout; url = gitRepoUrl;
|
2020-12-21 12:17:01 +00:00
|
|
|
} // lib.optionalAttrs (leaveDotGit != null) { inherit leaveDotGit; }
|
2022-05-24 16:03:46 +00:00
|
|
|
else {
|
|
|
|
url = "${baseUrl}/archive/${rev}.tar.gz";
|
|
|
|
|
|
|
|
passthru = {
|
|
|
|
inherit gitRepoUrl;
|
|
|
|
};
|
|
|
|
}
|
2021-09-15 14:17:30 +00:00
|
|
|
) // privateAttrs // passthruAttrs // { inherit name; };
|
2020-12-21 12:17:01 +00:00
|
|
|
in
|
|
|
|
|
2022-12-09 22:57:33 +00:00
|
|
|
fetcher fetcherArgs // { meta = newMeta; inherit rev owner repo; }
|
2022-02-10 13:40:58 +00:00
|
|
|
)
|