2024-05-02 00:46:19 +00:00
|
|
|
# Gitea's URLs are compatible with GitHub
|
|
|
|
|
|
|
|
{ lib, fetchFromGitHub }:
|
|
|
|
|
|
|
|
lib.makeOverridable (
|
2024-06-30 08:16:52 +00:00
|
|
|
{ domain, ... }@args:
|
2024-05-02 00:46:19 +00:00
|
|
|
|
2024-06-30 08:16:52 +00:00
|
|
|
fetchFromGitHub ((removeAttrs args [ "domain" ]) // { githubBase = domain; })
|
2024-05-02 00:46:19 +00:00
|
|
|
)
|