mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
22 lines
612 B
Nix
22 lines
612 B
Nix
{ stdenv, fetchurl, alsaLib
|
|
, version ? "1.7.1"
|
|
, sourceSha256 ? "051mv6f13c8y13c1iv3279k1hhzpz4fm9sfczhgp9sim2bjdj055"
|
|
}:
|
|
stdenv.mkDerivation {
|
|
name = "pmidi-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/pmidi/${version}/pmidi-${version}.tar.gz";
|
|
sha256 = sourceSha256;
|
|
};
|
|
|
|
buildInputs = [ alsaLib ];
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = http://www.parabola.me.uk/alsa/pmidi.html;
|
|
description = "A straightforward command line program to play midi files through the ALSA sequencer";
|
|
maintainers = with maintainers; [ lheckemann ];
|
|
license = licenses.gpl2;
|
|
};
|
|
}
|