about summary refs log tree commit diff
path: root/pkgs/build-support/dotnet/make-nuget-deps/default.nix
blob: cd048bcc30e577eb71689a0a887ca40ccdeb7e0a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ linkFarmFromDrvs, fetchurl }:
{ name, nugetDeps ? import sourceFile, sourceFile ? null }:
linkFarmFromDrvs "${name}-nuget-deps" (nugetDeps {
  fetchNuGet = { pname, version, sha256 ? "", hash ? ""
    , url ? "https://www.nuget.org/api/v2/package/${pname}/${version}" }:
    fetchurl {
      name = "${pname}.${version}.nupkg";
      # There is no need to verify whether both sha256 and hash are
      # valid here, because nuget-to-nix does not generate a deps.nix
      # containing both.
      inherit url sha256 hash;
    };
}) // {
  inherit sourceFile;
}