nixpkgs/pkgs/applications/audio/mamba/default.nix

41 lines
865 B
Nix
Raw Normal View History

2020-08-03 17:37:02 +00:00
{ stdenv
, fetchFromGitHub
2020-09-06 03:25:28 +00:00
, pkg-config
2020-08-03 17:37:02 +00:00
, cairo
2020-09-06 03:25:28 +00:00
, fluidsynth
2020-08-16 09:30:11 +00:00
, libX11
2020-08-03 17:37:02 +00:00
, libjack2
2020-10-13 11:36:10 +00:00
, alsaLib
2020-08-03 17:37:02 +00:00
, liblo
2020-08-16 09:30:11 +00:00
, libsigcxx
, libsmf
2020-08-03 17:37:02 +00:00
}:
stdenv.mkDerivation rec {
pname = "mamba";
2020-11-23 10:48:56 +00:00
version = "1.8";
2020-08-03 17:37:02 +00:00
src = fetchFromGitHub {
owner = "brummer10";
repo = "Mamba";
rev = "v${version}";
2020-11-23 10:48:56 +00:00
sha256 = "049gvdvvv3hkh1b47h0bia02g1p71agwh6g7q0n4yxz4d81b8kha";
2020-08-03 17:37:02 +00:00
fetchSubmodules = true;
};
2020-09-06 03:25:28 +00:00
nativeBuildInputs = [ pkg-config ];
2020-10-13 11:36:10 +00:00
buildInputs = [ cairo fluidsynth libX11 libjack2 alsaLib liblo libsigcxx libsmf ];
2020-08-03 17:37:02 +00:00
makeFlags = [ "PREFIX=$(out)" ];
2020-08-16 09:30:11 +00:00
enableParallelBuilding = true;
2020-08-03 17:37:02 +00:00
meta = with stdenv.lib; {
homepage = "https://github.com/brummer10/Mamba";
description = "Virtual MIDI keyboard for Jack Audio Connection Kit";
license = licenses.bsd0;
2020-08-16 09:30:11 +00:00
maintainers = with maintainers; [ magnetophon orivej ];
platforms = platforms.linux;
2020-08-03 17:37:02 +00:00
};
}