summaryrefslogtreecommitdiffstats
path: root/pkgs/development/compilers/dotnet/source/combine-deps.nix
blob: 8e8886a953d9db43430c8124faf61680bb6b1262 (plain)
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
41
42
43
44
45
46
47
48
49
{
  list,
  baseRid,
  otherRids,
  pkgs ? import ../../../../.. { },
}:
let
  inherit (pkgs) writeText;

  inherit (pkgs.lib)
    concatMap
    concatMapStringsSep
    generators
    importJSON
    optionals
    replaceStrings
    sortOn
    strings
    unique
    ;

  packages = concatMap (file: importJSON file) list;

  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
  ]) (concatMap expandPackage packages);

in
writeText "deps.json" (builtins.toJSON allPackages)