legends-of-equestria: init at 2024.05.01 (#296316)
[NixPkgs.git] / pkgs / build-support / fetchgitea / default.nix
bloba7910b671e9bdc0228f0eaa2ee451b63c7b2cbb9
1 # Gitea's URLs are compatible with GitHub
3 { lib, fetchFromGitHub }:
5 lib.makeOverridable (
6   { domain, ... }@args:
8   fetchFromGitHub ((removeAttrs args [ "domain" ]) // { githubBase = domain; })