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
legends-of-equestria: init at 2024.05.01 (#296316)
[NixPkgs.git]
/
pkgs
/
build-support
/
fetchgitea
/
default.nix
blob
a7910b671e9bdc0228f0eaa2ee451b63c7b2cbb9
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
)