2021-06-10 03:57:09 +01:00
|
|
|
{ lib, stdenv, fetchurl, alsa-lib
|
2018-01-27 21:33:31 +00:00
|
|
|
, version ? "1.7.1"
|
|
|
|
, sourceSha256 ? "051mv6f13c8y13c1iv3279k1hhzpz4fm9sfczhgp9sim2bjdj055"
|
|
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
2019-08-13 22:52:01 +01:00
|
|
|
pname = "pmidi";
|
|
|
|
inherit version;
|
2018-01-27 21:33:31 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/pmidi/${version}/pmidi-${version}.tar.gz";
|
|
|
|
sha256 = sourceSha256;
|
|
|
|
};
|
|
|
|
|
2021-06-10 03:57:09 +01:00
|
|
|
buildInputs = [ alsa-lib ];
|
2018-01-27 21:33:31 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-10-02 08:58:50 +01:00
|
|
|
homepage = "https://www.parabola.me.uk/alsa/pmidi.html";
|
2018-01-27 21:33:31 +00:00
|
|
|
description = "A straightforward command line program to play midi files through the ALSA sequencer";
|
|
|
|
maintainers = with maintainers; [ lheckemann ];
|
|
|
|
license = licenses.gpl2;
|
|
|
|
};
|
|
|
|
}
|