nixpkgs-suyu/pkgs/tools/audio/abcmidi/default.nix

24 lines
708 B
Nix
Raw Normal View History

2017-12-13 20:07:06 +01:00
{ stdenv, fetchzip }:
2017-09-15 10:06:38 +02:00
stdenv.mkDerivation rec {
name = "abcMIDI-${version}";
2018-11-02 22:55:45 +01:00
version = "2018.10.25";
2017-09-15 10:06:38 +02:00
2017-12-13 20:07:06 +01:00
src = fetchzip {
url = "https://ifdo.ca/~seymour/runabc/${name}.zip";
2018-11-02 22:55:45 +01:00
sha256 = "0q7yrds1hpis1821mdsz31c2cvn7hs73a10fi1mrk1v4hqql8vv3";
2017-09-15 10:06:38 +02: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-26 02:17:46 +01:00
downloadPage = https://ifdo.ca/~seymour/runabc/top.html;
2017-09-15 10:06:38 +02:00
license = licenses.gpl2Plus;
2017-12-03 18:11:24 +01:00
description = "Utilities for converting between abc and MIDI";
2018-01-26 02:17:46 +01:00
platforms = platforms.unix;
2017-09-15 10:06:38 +02:00
maintainers = [ maintainers.dotlambda ];
};
}