2021-01-15 22:18:51 +00:00
|
|
|
{ lib, stdenv, fetchzip }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "abcMIDI";
|
2022-06-16 17:23:12 +00:00
|
|
|
version = "2022.06.07";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchzip {
|
|
|
|
url = "https://ifdo.ca/~seymour/runabc/${pname}-${version}.zip";
|
2022-06-16 17:23:12 +00:00
|
|
|
hash = "sha256-gMEqcdpJ4dFnxmGJHayM6ZH+n6osHvZ8Tlxk0Vvm1qI=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
homepage = "http://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 ];
|
|
|
|
};
|
|
|
|
}
|