summaryrefslogtreecommitdiffstats
path: root/pkgs/build-support/fetchgitea/default.nix
blob: cfa7c592db1f71674e51d8ecb63877d3707de3f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Gitea's URLs are compatible with GitHub

{ lib, fetchFromGitHub }:

lib.makeOverridable (
  {
    domain,
    functionName ? "fetchFromGitea",
    ...
  }@args:

  fetchFromGitHub (
    (removeAttrs args [
      "domain"
      "functionName"
    ])
    // {
      inherit functionName;
      githubBase = domain;
    }
  )
)