nixpkgs/pkgs/tools/audio/abcmidi/default.nix
2023-12-25 07:44:36 +00:00

21 lines
585 B
Nix

{ lib, stdenv, fetchzip }:
stdenv.mkDerivation rec {
pname = "abcMIDI";
version = "2023.12.23";
src = fetchzip {
url = "https://ifdo.ca/~seymour/runabc/${pname}-${version}.zip";
hash = "sha256-j7gww8T3wHMtec/Nvqxys2dSQCTJOw/7OQ8gwpc3mxo=";
};
meta = with lib; {
homepage = "https://abc.sourceforge.net/abcMIDI/";
downloadPage = "https://ifdo.ca/~seymour/runabc/top.html";
license = licenses.gpl2Plus;
description = "Utilities for converting between abc and MIDI";
platforms = platforms.unix;
maintainers = [ maintainers.dotlambda ];
};
}