mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 03:43:06 +00:00
11 lines
244 B
Nix
11 lines
244 B
Nix
|
{ callPackage, ... } @ args:
|
||
|
|
||
|
callPackage ./generic.nix (args // rec {
|
||
|
pname = "midi_matrix";
|
||
|
version = "0.30.0";
|
||
|
|
||
|
sha256 = "1nwmfxdzk4pvbwcgi3d7v4flqc10bmi2fxhrhrpfa7cafqs40ib6";
|
||
|
|
||
|
description = "An LV2 MIDI channel matrix patcher";
|
||
|
})
|