28ac782583
There are many more packages to fix, this is just a start. Rules: * Don't repeat the package name (not always that easy...) * Start with capital letter * Don't end with full stop * Don't start with "The ..." or "A ..." I've also added descriptions to some packages and rewritten others.
28 lines
740 B
Nix
28 lines
740 B
Nix
{ 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 ];
|
|
|
|
};
|
|
}
|