https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
19 lines
280 B
Nix
19 lines
280 B
Nix
{ lib }:
|
|
|
|
let
|
|
defaultSourceType = tname: {
|
|
shortName = tname;
|
|
isSource = false;
|
|
};
|
|
in lib.mapAttrs (tname: tset: defaultSourceType tname // tset) {
|
|
|
|
fromSource = {
|
|
isSource = true;
|
|
};
|
|
|
|
binaryNativeCode = {};
|
|
|
|
binaryBytecode = {};
|
|
|
|
binaryFirmware = {};
|
|
}
|