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

40 lines
847 B
Nix
Raw Normal View History

2020-08-03 19:37:02 +02:00
{ stdenv
, fetchFromGitHub
2020-09-06 05:25:28 +02:00
, pkg-config
2020-08-03 19:37:02 +02:00
, cairo
2020-09-06 05:25:28 +02:00
, fluidsynth
2020-08-16 11:30:11 +02:00
, libX11
2020-08-03 19:37:02 +02:00
, libjack2
, liblo
2020-08-16 11:30:11 +02:00
, libsigcxx
, libsmf
2020-08-03 19:37:02 +02:00
}:
stdenv.mkDerivation rec {
pname = "mamba";
2020-09-06 05:25:28 +02:00
version = "1.4";
2020-08-03 19:37:02 +02:00
src = fetchFromGitHub {
owner = "brummer10";
repo = "Mamba";
rev = "v${version}";
2020-09-06 05:25:28 +02:00
sha256 = "08dcm0mmka1lbssrgck66v9l2rk3r4y63ij06aw2f9la8a84y20j";
2020-08-03 19:37:02 +02:00
fetchSubmodules = true;
};
2020-09-06 05:25:28 +02:00
nativeBuildInputs = [ pkg-config ];
buildInputs = [ cairo fluidsynth libX11 libjack2 liblo libsigcxx libsmf ];
2020-08-03 19:37:02 +02:00
makeFlags = [ "PREFIX=$(out)" ];
2020-08-16 11:30:11 +02:00
enableParallelBuilding = true;
2020-08-03 19:37:02 +02: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 11:30:11 +02:00
maintainers = with maintainers; [ magnetophon orivej ];
platforms = platforms.linux;
2020-08-03 19:37:02 +02:00
};
}