Files
nixpkgs/pkgs/build-support/fetchgitea/default.nix
2026-06-07 12:25:20 +10:00

23 lines
327 B
Nix

# Gitea's URLs are compatible with GitHub
{ lib, fetchFromGitHub }:
lib.makeOverridable (
{
domain,
functionName ? "fetchFromGitea",
...
}@args:
fetchFromGitHub (
(removeAttrs args [
"domain"
"functionName"
])
// {
inherit functionName;
githubBase = domain;
}
)
)