mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-01 11:22:58 +00:00
Merge pull request #148062 from pennae/patchmatrix
This commit is contained in:
commit
6d9e0be803
45
pkgs/applications/audio/patchmatrix/default.nix
Normal file
45
pkgs/applications/audio/patchmatrix/default.nix
Normal file
@ -0,0 +1,45 @@
|
||||
{ stdenv
|
||||
, lib
|
||||
, fetchFromGitHub
|
||||
, libjack2
|
||||
, lv2
|
||||
, meson
|
||||
, ninja
|
||||
, pkg-config
|
||||
, glew
|
||||
, xorg
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "patchmatrix";
|
||||
version = "0.26.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "OpenMusicKontrollers";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
hash = "sha256-rR3y5rGzmib//caPmhthvMelAdHRvV0lMRfvcj9kcCg=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
meson
|
||||
ninja
|
||||
pkg-config
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
glew
|
||||
libjack2
|
||||
lv2
|
||||
xorg.libX11
|
||||
xorg.libXext
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "A JACK patchbay in flow matrix style";
|
||||
homepage = "https://github.com/OpenMusicKontrollers/patchmatrix";
|
||||
license = licenses.artistic2;
|
||||
maintainers = with maintainers; [ pennae ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
@ -27512,6 +27512,8 @@ with pkgs;
|
||||
|
||||
capture = callPackage ../tools/misc/capture {};
|
||||
|
||||
patchmatrix = callPackage ../applications/audio/patchmatrix { };
|
||||
|
||||
pbrt = callPackage ../applications/graphics/pbrt { };
|
||||
|
||||
pcloud = callPackage ../applications/networking/pcloud { };
|
||||
|
Loading…
Reference in New Issue
Block a user