Skip to content

Instantly share code, notes, and snippets.

@r-ryantm
Created May 18, 2021 22:54
Show Gist options
  • Save r-ryantm/887c5207fd89de163845e17f548101eb to your computer and use it in GitHub Desktop.
Save r-ryantm/887c5207fd89de163845e17f548101eb to your computer and use it in GitHub Desktop.
/nix/store/xj0zfh7j0wwp6b3kyp8s8igrjmj9dsgv-linuxsampler-2.2.0
├── bin
│   ├── linuxsampler
│   ├── lscp
│   └── ls_instr_script
├── include
│   └── linuxsampler
│   ├── common
│   │   ├── Condition.h
│   │   ├── ConstCapacityArray.h
│   │   ├── Exception.h
│   │   ├── global.h
│   │   ├── lsatomic.h
│   │   ├── Mutex.h
│   │   ├── optional.h
│   │   ├── SynchronizedConfig.h
│   │   └── Thread.h
│   ├── drivers
│   │   ├── audio
│   │   │   ├── AudioChannel.h
│   │   │   └── AudioOutputDevice.h
│   │   ├── Device.h
│   │   ├── DeviceParameter.h
│   │   └── midi
│   │   ├── midi.h
│   │   ├── MidiInputDevice.h
│   │   ├── MidiInputPort.h
│   │   ├── MidiInstrumentMapper.h
│   │   └── VirtualMidiDevice.h
│   ├── effects
│   │   ├── EffectChain.h
│   │   ├── EffectControl.h
│   │   ├── EffectFactory.h
│   │   ├── Effect.h
│   │   └── EffectInfo.h
│   ├── engines
│   │   ├── EngineChannel.h
│   │   ├── Engine.h
│   │   ├── FxSend.h
│   │   ├── InstrumentManager.h
│   │   └── LFO.h
│   ├── EventListeners.h
│   ├── plugins
│   │   ├── InstrumentEditorFactory.h
│   │   └── InstrumentEditor.h
│   ├── Sampler.h
│   └── scriptvm
│   ├── common.h
│   ├── ScriptVMFactory.h
│   └── ScriptVM.h
├── lib
│   ├── linuxsampler
│   │   ├── liblinuxsampler.la
│   │   ├── liblinuxsampler.so -> liblinuxsampler.so.6.0.0
│   │   ├── liblinuxsampler.so.6 -> liblinuxsampler.so.6.0.0
│   │   ├── liblinuxsampler.so.6.0.0
│   │   └── plugins
│   ├── lv2
│   │   └── linuxsampler.lv2
│   │   ├── linuxsampler.la
│   │   ├── linuxsampler.so
│   │   ├── linuxsampler.ttl
│   │   └── manifest.ttl
│   └── pkgconfig
│   └── linuxsampler.pc
└── share
└── man
└── man1
├── linuxsampler.1.gz
└── lscp.1.gz
20 directories, 49 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment