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