File: provenance.dot

package info (click to toggle)
golang-github-in-toto-attestation 1.1.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,236 kB
  • sloc: python: 232; makefile: 76
file content (17 lines) | stat: -rw-r--r-- 378 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
digraph {
  node [shape=rect];
  subgraph cluster_external {
    label="External Inputs";
    materials;
    entryPoint;
    arguments;
  }
  subgraph cluster_system {
    label="System Inputs";
    environment;
    type;
  }
  BuildExecution [shape=oval];
  {type, entryPoint, arguments, materials} -> recipe;
  {recipe, materials, environment} -> BuildExecution -> subject;
}