about summary refs log tree commit diff
path: root/pkgs/development/compilers/dotnet/combine-deps.nix
blob: a7c4356b34b039aa398c9b058d170599c54cbb0b (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
37
38
39
40
{
  list,
  baseRid,
  otherRids,
  pkgs ? import ../../../.. {}
}:
with pkgs.lib;
let
  inherit (pkgs) writeText;

  fns = map (file: import file) list;
  packages = unique
    (concatMap (fn: fn { fetchNuGet = package: package; }) fns);

  changePackageRid = package: rid:
    let replace = replaceStrings [".${baseRid}"] [".${rid}"];
    in rec {
      pname = replace package.pname;
      inherit (package) version;
      url = replace package.url;
      sha256 = builtins.hashFile "sha256" (builtins.fetchurl url);
    };

  expandPackage = package:
    [ package ] ++
    optionals (strings.match ".*\\.${baseRid}(\\..*|$)" package.pname != null)
    (map (changePackageRid package) otherRids);

  allPackages =
    sortOn (package: [ package.pname package.version package ])
    (concatMap expandPackage packages);

  fetchExpr = package:
    "  (fetchNuGet ${generators.toPretty { multiline = false; } package})";

in writeText "deps.nix" ''
  { fetchNuGet }: [
  ${concatMapStringsSep "\n" fetchExpr allPackages}
  ]
''