2021-01-15 22:18:51 +00:00
|
|
|
{ lib, stdenv, fetchzip }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "abcMIDI";
|
2024-01-02 11:29:13 +00:00
|
|
|
version = "2023.12.23";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchzip {
|
|
|
|
url = "https://ifdo.ca/~seymour/runabc/${pname}-${version}.zip";
|
2024-01-02 11:29:13 +00:00
|
|
|
hash = "sha256-j7gww8T3wHMtec/Nvqxys2dSQCTJOw/7OQ8gwpc3mxo=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2023-02-02 18:25:31 +00:00
|
|
|
homepage = "https://abc.sourceforge.net/abcMIDI/";
|
2020-04-24 23:36:52 +00:00
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|