Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save r-ryantm/2b1cb75acc3133fb6d68b99b7a98f6ef to your computer and use it in GitHub Desktop.
Save r-ryantm/2b1cb75acc3133fb6d68b99b7a98f6ef to your computer and use it in GitHub Desktop.
/nix/store/ljj52p1vlqp5iriim1wjgwgisk3vjphj-lv2-1.18.0
├── bin
│   ├── lv2specgen.py
│   └── lv2_validate
├── include
│   ├── lv2
│   │   ├── atom -> ../../lib/lv2/atom.lv2
│   │   ├── buf-size -> ../../lib/lv2/buf-size.lv2
│   │   ├── core -> ../../lib/lv2/core.lv2
│   │   ├── data-access -> ../../lib/lv2/data-access.lv2
│   │   ├── dynmanifest -> ../../lib/lv2/dynmanifest.lv2
│   │   ├── event -> ../../lib/lv2/event.lv2
│   │   ├── instance-access -> ../../lib/lv2/instance-access.lv2
│   │   ├── log -> ../../lib/lv2/log.lv2
│   │   ├── lv2plug.in
│   │   │   └── ns
│   │   │   ├── ext
│   │   │   │   ├── atom -> ../../../../../lib/lv2/atom.lv2
│   │   │   │   ├── buf-size -> ../../../../../lib/lv2/buf-size.lv2
│   │   │   │   ├── data-access -> ../../../../../lib/lv2/data-access.lv2
│   │   │   │   ├── dynmanifest -> ../../../../../lib/lv2/dynmanifest.lv2
│   │   │   │   ├── event -> ../../../../../lib/lv2/event.lv2
│   │   │   │   ├── instance-access -> ../../../../../lib/lv2/instance-access.lv2
│   │   │   │   ├── log -> ../../../../../lib/lv2/log.lv2
│   │   │   │   ├── midi -> ../../../../../lib/lv2/midi.lv2
│   │   │   │   ├── morph -> ../../../../../lib/lv2/morph.lv2
│   │   │   │   ├── options -> ../../../../../lib/lv2/options.lv2
│   │   │   │   ├── parameters -> ../../../../../lib/lv2/parameters.lv2
│   │   │   │   ├── patch -> ../../../../../lib/lv2/patch.lv2
│   │   │   │   ├── port-groups -> ../../../../../lib/lv2/port-groups.lv2
│   │   │   │   ├── port-props -> ../../../../../lib/lv2/port-props.lv2
│   │   │   │   ├── presets -> ../../../../../lib/lv2/presets.lv2
│   │   │   │   ├── resize-port -> ../../../../../lib/lv2/resize-port.lv2
│   │   │   │   ├── state -> ../../../../../lib/lv2/state.lv2
│   │   │   │   ├── time -> ../../../../../lib/lv2/time.lv2
│   │   │   │   ├── urid -> ../../../../../lib/lv2/urid.lv2
│   │   │   │   ├── uri-map -> ../../../../../lib/lv2/uri-map.lv2
│   │   │   │   └── worker -> ../../../../../lib/lv2/worker.lv2
│   │   │   ├── extensions
│   │   │   │   ├── ui -> ../../../../../lib/lv2/ui.lv2
│   │   │   │   └── units -> ../../../../../lib/lv2/units.lv2
│   │   │   └── lv2core -> ../../../../lib/lv2/core.lv2
│   │   ├── midi -> ../../lib/lv2/midi.lv2
│   │   ├── morph -> ../../lib/lv2/morph.lv2
│   │   ├── options -> ../../lib/lv2/options.lv2
│   │   ├── parameters -> ../../lib/lv2/parameters.lv2
│   │   ├── patch -> ../../lib/lv2/patch.lv2
│   │   ├── port-groups -> ../../lib/lv2/port-groups.lv2
│   │   ├── port-props -> ../../lib/lv2/port-props.lv2
│   │   ├── presets -> ../../lib/lv2/presets.lv2
│   │   ├── resize-port -> ../../lib/lv2/resize-port.lv2
│   │   ├── state -> ../../lib/lv2/state.lv2
│   │   ├── time -> ../../lib/lv2/time.lv2
│   │   ├── ui -> ../../lib/lv2/ui.lv2
│   │   ├── units -> ../../lib/lv2/units.lv2
│   │   ├── urid -> ../../lib/lv2/urid.lv2
│   │   ├── uri-map -> ../../lib/lv2/uri-map.lv2
│   │   └── worker -> ../../lib/lv2/worker.lv2
│   └── lv2.h -> lv2/core/lv2.h
├── lib
│   ├── lv2
│   │   ├── atom.lv2
│   │   │   ├── atom.h
│   │   │   ├── atom.meta.ttl
│   │   │   ├── atom-test.c
│   │   │   ├── atom-test-utils.c
│   │   │   ├── atom.ttl
│   │   │   ├── forge.h
│   │   │   ├── forge-overflow-test.c
│   │   │   ├── manifest.ttl
│   │   │   └── util.h
│   │   ├── buf-size.lv2
│   │   │   ├── buf-size.h
│   │   │   ├── buf-size.meta.ttl
│   │   │   ├── buf-size.ttl
│   │   │   └── manifest.ttl
│   │   ├── core.lv2
│   │   │   ├── attributes.h
│   │   │   ├── lv2core.meta.ttl
│   │   │   ├── lv2core.ttl
│   │   │   ├── lv2.h
│   │   │   ├── lv2_util.h
│   │   │   ├── manifest.ttl
│   │   │   ├── meta.ttl
│   │   │   └── people.ttl
│   │   ├── data-access.lv2
│   │   │   ├── data-access.h
│   │   │   ├── data-access.meta.ttl
│   │   │   ├── data-access.ttl
│   │   │   └── manifest.ttl
│   │   ├── dynmanifest.lv2
│   │   │   ├── dynmanifest.h
│   │   │   ├── dynmanifest.meta.ttl
│   │   │   ├── dynmanifest.ttl
│   │   │   └── manifest.ttl
│   │   ├── eg-amp.lv2
│   │   │   ├── amp.so
│   │   │   ├── amp.ttl
│   │   │   └── manifest.ttl
│   │   ├── eg-fifths.lv2
│   │   │   ├── fifths.so
│   │   │   ├── fifths.ttl
│   │   │   └── manifest.ttl
│   │   ├── eg-metro.lv2
│   │   │   ├── manifest.ttl
│   │   │   ├── metro.so
│   │   │   └── metro.ttl
│   │   ├── eg-midigate.lv2
│   │   │   ├── manifest.ttl
│   │   │   ├── midigate.so
│   │   │   └── midigate.ttl
│   │   ├── eg-params.lv2
│   │   │   ├── manifest.ttl
│   │   │   ├── params.so
│   │   │   └── params.ttl
│   │   ├── eg-sampler.lv2
│   │   │   ├── click.wav
│   │   │   ├── manifest.ttl
│   │   │   ├── sampler.so
│   │   │   ├── sampler.ttl
│   │   │   └── sampler_ui.so
│   │   ├── eg-scope.lv2
│   │   │   ├── examploscope.so
│   │   │   ├── examploscope.ttl
│   │   │   ├── examploscope_ui.so
│   │   │   └── manifest.ttl
│   │   ├── event.lv2
│   │   │   ├── event.h
│   │   │   ├── event-helpers.h
│   │   │   ├── event.meta.ttl
│   │   │   ├── event.ttl
│   │   │   └── manifest.ttl
│   │   ├── instance-access.lv2
│   │   │   ├── instance-access.h
│   │   │   ├── instance-access.meta.ttl
│   │   │   ├── instance-access.ttl
│   │   │   └── manifest.ttl
│   │   ├── log.lv2
│   │   │   ├── logger.h
│   │   │   ├── log.h
│   │   │   ├── log.meta.ttl
│   │   │   ├── log.ttl
│   │   │   └── manifest.ttl
│   │   ├── midi.lv2
│   │   │   ├── manifest.ttl
│   │   │   ├── midi.h
│   │   │   ├── midi.meta.ttl
│   │   │   └── midi.ttl
│   │   ├── morph.lv2
│   │   │   ├── manifest.ttl
│   │   │   ├── morph.h
│   │   │   ├── morph.meta.ttl
│   │   │   └── morph.ttl
│   │   ├── options.lv2
│   │   │   ├── manifest.ttl
│   │   │   ├── options.h
│   │   │   ├── options.meta.ttl
│   │   │   └── options.ttl
│   │   ├── parameters.lv2
│   │   │   ├── manifest.ttl
│   │   │   ├── parameters.h
│   │   │   ├── parameters.meta.ttl
│   │   │   └── parameters.ttl
│   │   ├── patch.lv2
│   │   │   ├── manifest.ttl
│   │   │   ├── patch.h
│   │   │   ├── patch.meta.ttl
│   │   │   └── patch.ttl
│   │   ├── port-groups.lv2
│   │   │   ├── manifest.ttl
│   │   │   ├── port-groups.h
│   │   │   ├── port-groups.meta.ttl
│   │   │   └── port-groups.ttl
│   │   ├── port-props.lv2
│   │   │   ├── manifest.ttl
│   │   │   ├── port-props.h
│   │   │   ├── port-props.meta.ttl
│   │   │   └── port-props.ttl
│   │   ├── presets.lv2
│   │   │   ├── manifest.ttl
│   │   │   ├── presets.h
│   │   │   ├── presets.meta.ttl
│   │   │   └── presets.ttl
│   │   ├── resize-port.lv2
│   │   │   ├── manifest.ttl
│   │   │   ├── resize-port.h
│   │   │   ├── resize-port.meta.ttl
│   │   │   └── resize-port.ttl
│   │   ├── schemas.lv2
│   │   │   ├── dcs.ttl
│   │   │   ├── dct.ttl
│   │   │   ├── doap.ttl
│   │   │   ├── foaf.ttl
│   │   │   ├── manifest.ttl
│   │   │   ├── owl.ttl
│   │   │   ├── rdfs.ttl
│   │   │   ├── rdf.ttl
│   │   │   └── xsd.ttl
│   │   ├── state.lv2
│   │   │   ├── manifest.ttl
│   │   │   ├── state.h
│   │   │   ├── state.meta.ttl
│   │   │   └── state.ttl
│   │   ├── time.lv2
│   │   │   ├── manifest.ttl
│   │   │   ├── time.h
│   │   │   ├── time.meta.ttl
│   │   │   └── time.ttl
│   │   ├── ui.lv2
│   │   │   ├── manifest.ttl
│   │   │   ├── ui.h
│   │   │   ├── ui.meta.ttl
│   │   │   └── ui.ttl
│   │   ├── units.lv2
│   │   │   ├── manifest.ttl
│   │   │   ├── units.h
│   │   │   ├── units.meta.ttl
│   │   │   └── units.ttl
│   │   ├── urid.lv2
│   │   │   ├── manifest.ttl
│   │   │   ├── urid.h
│   │   │   ├── urid.meta.ttl
│   │   │   └── urid.ttl
│   │   ├── uri-map.lv2
│   │   │   ├── manifest.ttl
│   │   │   ├── uri-map.h
│   │   │   ├── uri-map.meta.ttl
│   │   │   └── uri-map.ttl
│   │   └── worker.lv2
│   │   ├── manifest.ttl
│   │   ├── worker.h
│   │   ├── worker.meta.ttl
│   │   └── worker.ttl
│   └── pkgconfig
│   └── lv2.pc
└── share
└── lv2specgen
├── DTD
│   ├── xhtml-attribs-1.mod
│   ├── xhtml-base-1.mod
│   ├── xhtml-basic11.dtd
│   ├── xhtml-basic11-model-1.mod
│   ├── xhtml-basic-table-1.mod
│   ├── xhtml-bdo-1.mod
│   ├── xhtml-blkphras-1.mod
│   ├── xhtml-blkpres-1.mod
│   ├── xhtml-blkstruct-1.mod
│   ├── xhtml-charent-1.mod
│   ├── xhtml-csismap-1.mod
│   ├── xhtml-datatypes-1.mod
│   ├── xhtml-datatypes-1.mod.1
│   ├── xhtml-edit-1.mod
│   ├── xhtml-events-1.mod
│   ├── xhtml-form-1.mod
│   ├── xhtml-framework-1.mod
│   ├── xhtml-hypertext-1.mod
│   ├── xhtml-image-1.mod
│   ├── xhtml-inlphras-1.mod
│   ├── xhtml-inlpres-1.mod
│   ├── xhtml-inlstruct-1.mod
│   ├── xhtml-inlstyle-1.mod
│   ├── xhtml-inputmode-1.mod
│   ├── xhtml-lat1.ent
│   ├── xhtml-legacy-1.mod
│   ├── xhtml-link-1.mod
│   ├── xhtml-list-1.mod
│   ├── xhtml-meta-1.mod
│   ├── xhtml-metaAttributes-1.mod
│   ├── xhtml-object-1.mod
│   ├── xhtml-param-1.mod
│   ├── xhtml-pres-1.mod
│   ├── xhtml-qname-1.mod
│   ├── xhtml-rdfa-1.dtd
│   ├── xhtml-rdfa-model-1.mod
│   ├── xhtml-script-1.mod
│   ├── xhtml-special.ent
│   ├── xhtml-ssismap-1.mod
│   ├── xhtml-struct-1.mod
│   ├── xhtml-style-1.mod
│   ├── xhtml-symbol.ent
│   ├── xhtml-table-1.mod
│   ├── xhtml-target-1.mod
│   └── xhtml-text-1.mod
├── style.css
└── template.html
93 directories, 191 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment