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

25 lines
728 B
Nix
Raw Normal View History

2017-12-03 17:11:24 +00:00
{ stdenv, fetchurl, unzip }:
2017-09-15 08:06:38 +00:00
stdenv.mkDerivation rec {
name = "abcMIDI-${version}";
2017-12-03 17:11:24 +00:00
version = "2017.11.27";
2017-09-15 08:06:38 +00:00
2017-12-03 17:11:24 +00:00
# You can find new releases on http://ifdo.ca/~seymour/runabc/top.html
src = fetchurl {
url = "http://ifdo.ca/~seymour/runabc/${name}.zip";
sha256 = "095nnyaqnsr3v7hsswpad9g0hxdnr4s6z8yk1bmr3g1j0cfv1xs9";
2017-09-15 08:06:38 +00:00
};
2017-12-03 17:11:24 +00:00
nativeBuildInputs = [ unzip ];
2017-09-15 08:06:38 +00: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 08:06:38 +00:00
maintainers = [ maintainers.dotlambda ];
};
}