evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / pm / pmidi / package.nix
blobf2e2310bd4c479f91f482269f5b4951235cc507e
1 { lib, stdenv, fetchurl, alsa-lib
2 , version ? "1.7.1"
3 , sourceSha256 ? "051mv6f13c8y13c1iv3279k1hhzpz4fm9sfczhgp9sim2bjdj055"
4 }:
5 stdenv.mkDerivation {
6   pname = "pmidi";
7   inherit version;
9   src = fetchurl {
10     url = "mirror://sourceforge/pmidi/${version}/pmidi-${version}.tar.gz";
11     sha256 = sourceSha256;
12   };
14   buildInputs = [ alsa-lib ];
16   meta = with lib; {
17     homepage = "https://www.parabola.me.uk/alsa/pmidi.html";
18     description = "Straightforward command line program to play midi files through the ALSA sequencer";
19     maintainers = [ ];
20     license = licenses.gpl2;
21     mainProgram = "pmidi";
22   };