blob: 436d809dcd62baba925f8448029d66314375b276 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
{
lib,
stdenv,
fetchurl,
alsa-lib,
version ? "1.7.1",
sourceSha256 ? "051mv6f13c8y13c1iv3279k1hhzpz4fm9sfczhgp9sim2bjdj055",
}:
stdenv.mkDerivation {
pname = "pmidi";
inherit version;
src = fetchurl {
url = "mirror://sourceforge/pmidi/${version}/pmidi-${version}.tar.gz";
sha256 = sourceSha256;
};
buildInputs = [ alsa-lib ];
meta = {
homepage = "https://www.parabola.me.uk/alsa/pmidi.html";
description = "Straightforward command line program to play midi files through the ALSA sequencer";
maintainers = [ ];
license = lib.licenses.gpl2;
mainProgram = "pmidi";
};
}
|