23 lines
708 B
Nix
23 lines
708 B
Nix
{ stdenv, fetchzip }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "abcMIDI-${version}";
|
|
version = "2019.02.08";
|
|
|
|
src = fetchzip {
|
|
url = "https://ifdo.ca/~seymour/runabc/${name}.zip";
|
|
sha256 = "14j2vgcck7c6x8bplhfng7mmqcmh7h98jggi30d5xa0anx1271sb";
|
|
};
|
|
|
|
# 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/;
|
|
downloadPage = https://ifdo.ca/~seymour/runabc/top.html;
|
|
license = licenses.gpl2Plus;
|
|
description = "Utilities for converting between abc and MIDI";
|
|
platforms = platforms.unix;
|
|
maintainers = [ maintainers.dotlambda ];
|
|
};
|
|
}
|