mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01: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; })
|