mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-08-27 02:34:53 +00:00
23 lines
327 B
Nix
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;
|
|
}
|
|
)
|
|
)
|