2017-12-13 19:07:06 +00:00
|
|
|
{ stdenv, fetchzip }:
|
2017-09-15 09:06:38 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "abcMIDI-${version}";
|
2017-12-22 07:53:20 +00:00
|
|
|
version = "2017.12.20";
|
2017-09-15 09:06:38 +01:00
|
|
|
|
2017-12-03 17:11:24 +00:00
|
|
|
# You can find new releases on http://ifdo.ca/~seymour/runabc/top.html
|
2017-12-13 19:07:06 +00:00
|
|
|
src = fetchzip {
|
2017-12-03 17:11:24 +00:00
|
|
|
url = "http://ifdo.ca/~seymour/runabc/${name}.zip";
|
2017-12-22 07:53:20 +00:00
|
|
|
sha256 = "0lkbwrh701djbyqmybvx860p8csy25i6p3p7hr0cpndpa496nm07";
|
2017-09-15 09:06:38 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
# There is also a file called "makefile" which seems to be preferred by the standard build phase
|
|
|
|
makefile = "Makefile";
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = http://abc.sourceforge.net/abcMIDI/;
|
|
|
|
license = licenses.gpl2Plus;
|
2017-12-03 17:11:24 +00:00
|
|
|
description = "Utilities for converting between abc and MIDI";
|
2017-09-15 09:06:38 +01:00
|
|
|
maintainers = [ maintainers.dotlambda ];
|
|
|
|
};
|
|
|
|
}
|