core/pkgs/build-support/fetchrepoorcz/default.nix

24 lines
373 B
Nix
Raw Normal View History

2024-05-02 00:46:19 +00:00
{ fetchzip }:
# gitweb example, snapshot support is optional in gitweb
2024-06-30 08:16:52 +00:00
{
repo,
rev,
name ? "source",
... # For hash agility
}@args:
fetchzip (
{
inherit name;
url = "https://repo.or.cz/${repo}.git/snapshot/${rev}.tar.gz";
meta.homepage = "https://repo.or.cz/${repo}.git/";
}
// removeAttrs args [
"repo"
"rev"
]
)
// {
inherit rev;
}