mamba: init at 1.1
This commit is contained in:
parent
a653b54dba
commit
8a220dfe9c
2 changed files with 47 additions and 0 deletions
45
pkgs/applications/audio/mamba/default.nix
Normal file
45
pkgs/applications/audio/mamba/default.nix
Normal file
|
@ -0,0 +1,45 @@
|
|||
{ stdenv
|
||||
, fetchFromGitHub
|
||||
, xorg
|
||||
, cairo
|
||||
, libjack2
|
||||
, pcre
|
||||
, libXdmcp
|
||||
, libsigcxx
|
||||
, liblo
|
||||
, pkgconfig
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "mamba";
|
||||
version = "1.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "brummer10";
|
||||
repo = "Mamba";
|
||||
rev = "v${version}";
|
||||
sha256 = "1rjy7l9sx8xvk64s29g0jrrirm5h2qg0pdvvz4i1kkbs7nasnjm5";
|
||||
fetchSubmodules = true;
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ pkgconfig ];
|
||||
buildInputs = [
|
||||
xorg.libX11
|
||||
xorg.libpthreadstubs
|
||||
cairo
|
||||
libjack2
|
||||
pcre
|
||||
libXdmcp
|
||||
libsigcxx
|
||||
liblo
|
||||
];
|
||||
|
||||
makeFlags = [ "PREFIX=$(out)" ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = "https://github.com/brummer10/Mamba";
|
||||
description = "Virtual MIDI keyboard for Jack Audio Connection Kit";
|
||||
maintainers = [ maintainers.magnetophon ];
|
||||
license = licenses.bsd0;
|
||||
};
|
||||
}
|
|
@ -26373,6 +26373,8 @@ in
|
|||
icu = icu58;
|
||||
};
|
||||
|
||||
mamba = callPackage ../applications/audio/mamba{ };
|
||||
|
||||
mame = libsForQt5.callPackage ../misc/emulators/mame {
|
||||
inherit (darwin.apple_sdk.frameworks) CoreAudioKit ForceFeedback;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue