summary refs log blame commit diff
path: root/lib/source-types.nix
blob: c4f263dcf4643c7a0b67ca988a7cb301536a1b08 (plain) (tree)
1
2
3
4
5
6
7
8

        

                              


                      
                                                                










                        
{ lib }:

let
  defaultSourceType = tname: {
    shortName = tname;
    isSource = false;
  };
in lib.mapAttrs (tname: tset: defaultSourceType tname // tset) {

  fromSource = {
    isSource = true;
  };

  binaryNativeCode = {};

  binaryBytecode = {};

  binaryFirmware = {};
}