repo.or.cz
/
NixPkgs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
python311Packages.moto: 4.2.6 -> 4.2.10
[NixPkgs.git]
/
pkgs
/
build-support
/
fetchgitea
/
default.nix
blob
513ceba861cbbd8453f0a679f3e64307cdf070e8
1
# Gitea's URLs are compatible with GitHub
2
3
{ lib, fetchFromGitHub }:
4
5
lib.makeOverridable (
6
{ domain, ... }@args:
7
8
fetchFromGitHub ((removeAttrs args [ "domain" ]) // { githubBase = domain; })
9
)