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

31 lines
967 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, fetchpatch, makeWrapper, pkg-config, alsaLib, dbus, libjack2
2020-10-09 19:51:19 +00:00
, python3Packages , meson, ninja }:
2020-10-09 19:51:19 +00:00
stdenv.mkDerivation rec {
pname = "a2jmidid";
2020-10-09 19:51:19 +00:00
version = "9";
2020-10-09 19:51:19 +00:00
src = fetchFromGitHub {
owner = "linuxaudio";
repo = pname;
rev = version;
sha256 = "sha256-WNt74tSWV8bY4TnpLp86PsnrjkqWynJJt3Ra4gZl2fQ=";
};
nativeBuildInputs = [ pkg-config makeWrapper meson ninja ];
2020-10-09 19:51:19 +00:00
buildInputs = [ alsaLib dbus libjack2 ] ++
(with python3Packages; [ python dbus-python ]);
2019-01-04 19:33:49 +00:00
postInstall = ''
wrapProgram $out/bin/a2j_control --set PYTHONPATH $PYTHONPATH
2020-10-09 19:51:19 +00:00
substituteInPlace $out/bin/a2j --replace "a2j_control" "$out/bin/a2j_control"
'';
meta = with lib; {
description = "Daemon for exposing legacy ALSA sequencer applications in JACK MIDI system";
license = licenses.gpl2;
maintainers = [ maintainers.goibhniu ];
platforms = [ "i686-linux" "x86_64-linux" "aarch64-linux" ];
};
}