svg2pdf: 0.8.0 -> 0.9.0
[NixPkgs.git] / lib / source-types.nix
blobc4f263dcf4643c7a0b67ca988a7cb301536a1b08
1 { lib }:
3 let
4   defaultSourceType = tname: {
5     shortName = tname;
6     isSource = false;
7   };
8 in lib.mapAttrs (tname: tset: defaultSourceType tname // tset) {
10   fromSource = {
11     isSource = true;
12   };
14   binaryNativeCode = {};
16   binaryBytecode = {};
18   binaryFirmware = {};