2021-01-15 22:18:51 +00:00
|
|
|
{ lib, stdenv, fetchzip }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "abcMIDI";
|
2023-10-09 19:29:22 +00:00
|
|
|
version = "2023.09.13";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchzip {
|
|
|
|
url = "https://ifdo.ca/~seymour/runabc/${pname}-${version}.zip";
|
2023-10-09 19:29:22 +00:00
|
|
|
hash = "sha256-rpGINfLuWHu6QA/30aI9B8Hmpfx1o6vstiQn+t0blxA=";
|
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 ];
|
|
|
|
};
|
|
|
|
}
|