Skip to content

Instantly share code, notes, and snippets.

@ryantm
Created September 27, 2019 02:29
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 ryantm/ebd1caeb051e06995e15d72b43f8a473 to your computer and use it in GitHub Desktop.
Save ryantm/ebd1caeb051e06995e15d72b43f8a473 to your computer and use it in GitHub Desktop.
/nix/store/smcg4jb8r26k3blf7b3z6q65y78nq4fb-linuxsampler-2.1.1
├── 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
│   ├── EventListeners.h
│   ├── plugins
│   │   ├── InstrumentEditorFactory.h
│   │   └── InstrumentEditor.h
│   ├── Sampler.h
│   └── scriptvm
│   ├── common.h
│   ├── ScriptVMFactory.h
│   └── ScriptVM.h
├── lib
│   ├── linuxsampler
│   │   ├── liblinuxsampler.la
│   │   ├── liblinuxsampler.so -> liblinuxsampler.so.5.0.0
│   │   ├── liblinuxsampler.so.5 -> liblinuxsampler.so.5.0.0
│   │   ├── liblinuxsampler.so.5.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, 48 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment