depot/third_party/nixpkgs/pkgs/tools/audio/abcmidi/default.nix
Default email 0eaa97ffad Project import generated by Copybara.
GitOrigin-RevId: c59ea8b8a0e7f927e7291c14ea6cd1bd3a16ff38
2020-08-20 19:08:02 +02:00

23 lines
714 B
Nix

{ stdenv, fetchzip }:
stdenv.mkDerivation rec {
pname = "abcMIDI";
version = "2020.07.28";
src = fetchzip {
url = "https://ifdo.ca/~seymour/runabc/${pname}-${version}.zip";
sha256 = "05nsakvnx1jz2k9bvabpw5v3js28ng9z7n6ch58brd3qxc2p76zv";
};
# 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 ];
};
}