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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

42 lines
874 B
Nix
Raw Normal View History

{ lib, stdenv
2020-08-03 19:37:02 +02:00
, fetchFromGitHub
2020-09-06 05:25:28 +02:00
, pkg-config
2021-05-09 06:55:26 +02:00
, xxd
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
, alsa-lib
2020-08-03 19:37:02 +02:00
, liblo
2020-08-16 11:30:11 +02:00
, libsigcxx
, libsmf
2020-08-03 19:37:02 +02:00
}:
stdenv.mkDerivation rec {
pname = "mamba";
2022-07-29 01:04:11 +02:00
version = "2.3";
2020-08-03 19:37:02 +02:00
src = fetchFromGitHub {
owner = "brummer10";
repo = "Mamba";
rev = "v${version}";
2022-07-29 01:04:11 +02:00
sha256 = "sha256-Dj8yPmuEtDVgu6Gm6aEY+dgJ0dtwB8RPg9EuaVAsiIs=";
2020-08-03 19:37:02 +02:00
fetchSubmodules = true;
};
2021-05-09 06:55:26 +02:00
nativeBuildInputs = [ pkg-config xxd ];
buildInputs = [ cairo fluidsynth libX11 libjack2 alsa-lib liblo libsigcxx libsmf ];
2020-08-03 19:37:02 +02:00
makeFlags = [ "PREFIX=$(out)" ];
2020-08-16 11:30:11 +02:00
enableParallelBuilding = true;
meta = with lib; {
2020-08-03 19:37:02 +02:00
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
};
}