summary refs log tree commit diff
path: root/pkgs/build-support/dotnet/make-nuget-source/default.nix
blob: ea1c5328082d5780a0b726091e6577f4d8e7405a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{ dotnetPackages, lib, xml2, stdenvNoCC }:

{ name
, description ? ""
, deps ? []
}:

let
  nuget-source = stdenvNoCC.mkDerivation rec {
    inherit name;

    meta.description = description;
    nativeBuildInputs = [ dotnetPackages.Nuget xml2 ];

    buildCommand = ''
      export HOME=$(mktemp -d)
      mkdir -p $out/{lib,share}

      ${lib.concatMapStringsSep "\n" (dep: ''
        nuget init "${dep}" "$out/lib"
      '') deps}

      # Generates a list of all licenses' spdx ids, if available.
      # Note that this currently ignores any license provided in plain text (e.g. "LICENSE.txt")
      find "$out/lib" -name "*.nuspec" -exec sh -c \
        "NUSPEC=\$(xml2 < {}) && echo "\$NUSPEC" | grep license/@type=expression | tr -s \  '\n' | grep "license=" | cut -d'=' -f2" \
      \; | sort -u > $out/share/licenses
    '';
  } // { # We need data from `$out` for `meta`, so we have to use overrides as to not hit infinite recursion.
    meta.licence = let
      depLicenses = lib.splitString "\n" (builtins.readFile "${nuget-source}/share/licenses");
    in (lib.flatten (lib.forEach depLicenses (spdx:
      lib.optionals (spdx != "") (lib.getLicenseFromSpdxId spdx)
    )));
  };
in nuget-source