2021-01-10 23:54:33 -08:00
|
|
|
{ lib, stdenv, fetchzip }:
|
2017-09-15 01:06:38 -07:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "abcMIDI";
|
2021-02-22 03:46:31 -08:00
|
|
|
version = "2021.02.21";
|
2017-09-15 01:06:38 -07:00
|
|
|
|
2017-12-13 11:07:06 -08:00
|
|
|
src = fetchzip {
|
2019-08-15 05:41:18 -07:00
|
|
|
url = "https://ifdo.ca/~seymour/runabc/${pname}-${version}.zip";
|
2021-02-22 03:46:31 -08:00
|
|
|
sha256 = "10fa2g8vsz0y7kb0wxnz857r2gd9b0b278j0a5ipjaa7cjd0gi1b";
|
2017-09-15 01:06:38 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
# There is also a file called "makefile" which seems to be preferred by the standard build phase
|
|
|
|
makefile = "Makefile";
|
|
|
|
|
2021-01-10 23:54:33 -08:00
|
|
|
meta = with lib; {
|
2020-03-04 08:32:23 -08:00
|
|
|
homepage = "http://abc.sourceforge.net/abcMIDI/";
|
2020-03-31 18:11:51 -07:00
|
|
|
downloadPage = "https://ifdo.ca/~seymour/runabc/top.html";
|
2017-09-15 01:06:38 -07:00
|
|
|
license = licenses.gpl2Plus;
|
2017-12-03 09:11:24 -08:00
|
|
|
description = "Utilities for converting between abc and MIDI";
|
2018-01-25 17:17:46 -08:00
|
|
|
platforms = platforms.unix;
|
2017-09-15 01:06:38 -07:00
|
|
|
maintainers = [ maintainers.dotlambda ];
|
|
|
|
};
|
|
|
|
}
|