mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-05 11:44:02 +00:00
20 lines
280 B
Nix
20 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 = {};
|
|
}
|