mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
23 lines
629 B
Nix
23 lines
629 B
Nix
{ fetchzip, lib }:
|
|
|
|
# gitlab example
|
|
{ owner, repo, rev, domain ? "gitlab.com", name ? "source", group ? null
|
|
, ... # For hash agility
|
|
} @ args:
|
|
|
|
with lib;
|
|
|
|
let
|
|
slug = concatStringsSep "/"
|
|
((optional (group != null) group) ++ [ owner repo ]);
|
|
|
|
escapedSlug = replaceStrings ["." "/"] ["%2E" "%2F"] slug;
|
|
escapedRev = replaceStrings ["+"] ["%2B"] rev;
|
|
in
|
|
|
|
fetchzip ({
|
|
inherit name;
|
|
url = "https://${domain}/api/v4/projects/${escapedSlug}/repository/archive.tar.gz?sha=${escapedRev}";
|
|
meta.homepage = "https://${domain}/${slug}/";
|
|
} // removeAttrs args [ "domain" "owner" "group" "repo" "rev" ]) // { inherit rev; }
|