about summary refs log tree commit diff
path: root/users/Profpatsch/ytextr/create-symlink-farm.nix
blob: 7b3a45b91681768327ef974ac97f60fccf882453 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
  # list of package attribute names to get at run time
  packageNamesAtRuntimeJsonPath
,
}:
let
  pkgs = import <nixpkgs> { };

  getPkg = pkgName: pkgs.${pkgName};

  packageNamesAtRuntime = builtins.fromJSON (builtins.readFile packageNamesAtRuntimeJsonPath);

  runtime = map getPkg packageNamesAtRuntime;

in
pkgs.symlinkJoin {
  name = "symlink-farm";
  paths = runtime;
}