nixpkgs-odroid-hc4/pkgs/build-support/fetchgitea/default.nix
2025-12-20 09:59:59 +11:00

7 lines
171 B
Nix

# Gitea's URLs are compatible with GitHub
{ lib, fetchFromGitHub }:
{ domain, ... }@args:
fetchFromGitHub ((removeAttrs args [ "domain" ]) // { githubBase = domain; })