2021-01-11 08:54:33 +01:00
|
|
|
{ lib, stdenv, fetchzip }:
|
2017-09-15 10:06:38 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "abcMIDI";
|
2022-03-07 04:14:26 +01:00
|
|
|
version = "2022.02.21";
|
2017-09-15 10:06:38 +02:00
|
|
|
|
2017-12-13 20:07:06 +01:00
|
|
|
src = fetchzip {
|
2019-08-15 14:41:18 +02:00
|
|
|
url = "https://ifdo.ca/~seymour/runabc/${pname}-${version}.zip";
|
2022-03-07 04:14:26 +01:00
|
|
|
hash = "sha256-oGGtJhVugqTvXD34Q2f8L5qoYoyyT5JjuBhqh4VYAAo=";
|
2017-09-15 10:06:38 +02:00
|
|
|
};
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2020-03-04 17:32:23 +01:00
|
|
|
homepage = "http://abc.sourceforge.net/abcMIDI/";
|
2020-04-01 03:11:51 +02:00
|
|
|
downloadPage = "https://ifdo.ca/~seymour/runabc/top.html";
|
2017-09-15 10:06:38 +02:00
|
|
|
license = licenses.gpl2Plus;
|
2017-12-03 18:11:24 +01:00
|
|
|
description = "Utilities for converting between abc and MIDI";
|
2018-01-26 02:17:46 +01:00
|
|
|
platforms = platforms.unix;
|
2017-09-15 10:06:38 +02:00
|
|
|
maintainers = [ maintainers.dotlambda ];
|
|
|
|
};
|
|
|
|
}
|