python311Packages.moto: 4.2.6 -> 4.2.10
[NixPkgs.git] / pkgs / build-support / fetchgitea / default.nix
blob513ceba861cbbd8453f0a679f3e64307cdf070e8
1 # Gitea's URLs are compatible with GitHub
3 { lib, fetchFromGitHub }:
5 lib.makeOverridable (
6 { domain, ... }@args:
8 fetchFromGitHub ((removeAttrs args [ "domain" ]) // { githubBase = domain; })