1# Gitea's URLs are compatible with GitHub 2 3{ lib, fetchFromGitHub }: 4 5lib.makeOverridable ( 6{ domain, ... }@args: 7 8fetchFromGitHub ((removeAttrs args [ "domain" ]) // { githubBase = domain; }) 9)