2017-12-13 11:07:06 -08:00
|
|
|
{ stdenv, fetchzip }:
|
2017-09-15 01:06:38 -07:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "abcMIDI-${version}";
|
2018-03-02 14:06:48 -08:00
|
|
|
version = "2018.02.22";
|
2017-09-15 01:06:38 -07:00
|
|
|
|
2017-12-13 11:07:06 -08:00
|
|
|
src = fetchzip {
|
2017-12-03 09:11:24 -08:00
|
|
|
url = "http://ifdo.ca/~seymour/runabc/${name}.zip";
|
2018-03-02 14:06:48 -08:00
|
|
|
sha256 = "03ln05012yhlq8aalm00af6pidb44phmmidlc953453isfllg82a";
|
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";
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = http://abc.sourceforge.net/abcMIDI/;
|
2018-01-25 17:17:46 -08: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 ];
|
|
|
|
};
|
|
|
|
}
|