mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-19 04:03:56 +00:00
8 lines
171 B
Nix
8 lines
171 B
Nix
|
# Gitea's URLs are compatible with GitHub
|
||
|
|
||
|
{ lib, fetchFromGitHub }:
|
||
|
|
||
|
{ domain, ... }@args:
|
||
|
|
||
|
fetchFromGitHub ((removeAttrs args [ "domain" ]) // { githubBase = domain; })
|