Unverified Commit d246c5c7 authored by Philip Taron's avatar Philip Taron Committed by GitHub
Browse files

lib.sourceTypes: add obfuscatedCode (#506195)

parents f3a1e049 ef398065
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -1569,6 +1569,9 @@
  "lib.sourceTypes.binaryBytecode": [
    "index.html#lib.sourceTypes.binaryBytecode"
  ],
  "lib.sourceTypes.obfuscatedCode": [
    "index.html#lib.sourceTypes.obfuscatedCode"
  ],
  "chap-passthru": [
    "index.html#chap-passthru"
  ],
+4 −0
Original line number Diff line number Diff line
@@ -258,6 +258,10 @@ Code to be executed on a peripheral device or embedded controller, built by a th

Code to run on a VM interpreter or JIT compiled into bytecode by a third party. This includes packages which download Java `.jar` files from another source.

### `lib.sourceTypes.obfuscatedCode` {#lib.sourceTypes.obfuscatedCode}

Code which is intentionally obfuscated by a third party, for example by using a code obfuscator or by being distributed in an obfuscated form.

## Software identifiers {#sec-meta-identifiers}

Package's `meta.identifiers` attribute specifies information about software identifiers associated with this package. Software identifiers are used, for example:
+2 −0
Original line number Diff line number Diff line
@@ -17,4 +17,6 @@ lib.mapAttrs (tname: tset: defaultSourceType tname // tset) {
  binaryBytecode = { };

  binaryFirmware = { };

  obfuscatedCode = { };
}