nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at devShellTools-shell 9 lines 199 B view raw
1# Gitea's URLs are compatible with GitHub 2 3{ lib, fetchFromGitHub }: 4 5lib.makeOverridable ( 6 { domain, ... }@args: 7 8 fetchFromGitHub ((removeAttrs args [ "domain" ]) // { githubBase = domain; }) 9)