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

40 lines
847 B
Nix
Raw Normal View History

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