2023-11-18 12:14:08 +00:00
|
|
|
{ lib, fetchgit, fetchzip }:
|
2019-01-26 15:06:25 +00:00
|
|
|
|
2022-02-10 13:40:58 +00:00
|
|
|
lib.makeOverridable (
|
2019-01-26 15:06:25 +00:00
|
|
|
# gitlab example
|
2021-09-15 17:33:20 +00:00
|
|
|
{ owner, repo, rev, protocol ? "https", domain ? "gitlab.com", name ? "source", group ? null
|
2023-11-18 12:14:08 +00:00
|
|
|
, fetchSubmodules ? false, leaveDotGit ? false
|
|
|
|
, deepClone ? false
|
2023-11-18 12:14:08 +00:00
|
|
|
, sparseCheckout ? []
|
2019-01-26 15:06:25 +00:00
|
|
|
, ... # For hash agility
|
2019-11-24 19:54:46 +00:00
|
|
|
} @ args:
|
|
|
|
|
|
|
|
let
|
2021-07-22 09:29:02 +00:00
|
|
|
slug = lib.concatStringsSep "/" ((lib.optional (group != null) group) ++ [ owner repo ]);
|
|
|
|
escapedSlug = lib.replaceStrings [ "." "/" ] [ "%2E" "%2F" ] slug;
|
|
|
|
escapedRev = lib.replaceStrings [ "+" "%" "/" ] [ "%2B" "%25" "%2F" ] rev;
|
2022-10-29 16:12:07 +00:00
|
|
|
passthruAttrs = removeAttrs args [ "protocol" "domain" "owner" "group" "repo" "rev" "fetchSubmodules" "leaveDotGit" "deepClone" ];
|
2021-07-22 09:29:02 +00:00
|
|
|
|
2023-11-18 12:14:08 +00:00
|
|
|
useFetchGit = fetchSubmodules || leaveDotGit || deepClone || (sparseCheckout != []);
|
2021-07-22 09:29:02 +00:00
|
|
|
fetcher = if useFetchGit then fetchgit else fetchzip;
|
2019-11-24 19:54:46 +00:00
|
|
|
|
2022-05-24 16:03:46 +00:00
|
|
|
gitRepoUrl = "${protocol}://${domain}/${slug}.git";
|
|
|
|
|
2021-07-22 09:29:02 +00:00
|
|
|
fetcherArgs = (if useFetchGit then {
|
2023-11-18 12:14:08 +00:00
|
|
|
inherit rev deepClone fetchSubmodules sparseCheckout leaveDotGit;
|
2022-05-24 16:03:46 +00:00
|
|
|
url = gitRepoUrl;
|
2021-07-22 09:29:02 +00:00
|
|
|
} else {
|
2021-09-15 17:33:20 +00:00
|
|
|
url = "${protocol}://${domain}/api/v4/projects/${escapedSlug}/repository/archive.tar.gz?sha=${escapedRev}";
|
2022-05-24 16:03:46 +00:00
|
|
|
|
|
|
|
passthru = {
|
|
|
|
inherit gitRepoUrl;
|
|
|
|
};
|
2021-07-22 09:29:02 +00:00
|
|
|
}) // passthruAttrs // { inherit name; };
|
2019-11-24 19:54:46 +00:00
|
|
|
in
|
|
|
|
|
2021-09-15 17:33:20 +00:00
|
|
|
fetcher fetcherArgs // { meta.homepage = "${protocol}://${domain}/${slug}/"; inherit rev; }
|
2022-02-10 13:40:58 +00:00
|
|
|
)
|