mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 04:43:09 +03:00
Adding a2jmidid
svn path=/nixpkgs/trunk/; revision=33667
This commit is contained in:
parent
d989f361ac
commit
78ffc6b30d
27
pkgs/applications/audio/a2jmidid/default.nix
Normal file
27
pkgs/applications/audio/a2jmidid/default.nix
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
{ stdenv, fetchurl, alsaLib, dbus, jackaudio, pkgconfig, python }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "a2jmidid-${version}";
|
||||||
|
version = "7";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "http://download.gna.org/a2jmidid/${name}.tar.bz2";
|
||||||
|
sha256 = "1pl91y7npirhmikzlizpbyx2vkfvdkvc6qvc2lv4capj3cp6ypx7";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ alsaLib dbus jackaudio pkgconfig python ];
|
||||||
|
|
||||||
|
configurePhase = "python waf configure --prefix=$out";
|
||||||
|
|
||||||
|
buildPhase = "python waf";
|
||||||
|
|
||||||
|
installPhase = "python waf install";
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
homepage = http://home.gna.org/a2jmidid;
|
||||||
|
description = "daemon for exposing legacy ALSA sequencer applications in JACK MIDI system";
|
||||||
|
license = licenses.gpl2;
|
||||||
|
maintainers = [ maintainers.goibhniu ];
|
||||||
|
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user