core/pkgs/build-support/fetchgitea/default.nix
2024-05-13 11:34:52 -04:00

10 lines
195 B
Nix

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