summary refs log tree commit diff
path: root/pkgs/applications/audio/open-music-kontrollers/patchmatrix.nix
blob: cc343e0330c30a9bec5d22e83790c0a33509a0dd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ callPackage, libjack2, ... } @ args:

callPackage ./generic.nix (args // rec {
  pname = "patchmatrix";
  version = "0.26.0";

  url = "https://git.open-music-kontrollers.ch/lad/${pname}/snapshot/${pname}-${version}.tar.xz";
  sha256 = "sha256-cqPHCnrAhHB6a0xmPUYOAsZfLsqnGpXEuGR1W6i6W7I=";

  additionalBuildInputs = [ libjack2 ];

  description = "A JACK patchbay in flow matrix style";
})