forked from mirrors/nixpkgs
21 lines
586 B
Nix
21 lines
586 B
Nix
{ lib, stdenv, fetchzip }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "abcMIDI";
|
|
version = "2021.09.15";
|
|
|
|
src = fetchzip {
|
|
url = "https://ifdo.ca/~seymour/runabc/${pname}-${version}.zip";
|
|
sha256 = "sha256-BrEgvrAHNfJpFTlI8tec+9w3G+5YR15lbzh/RKKpQ1c=";
|
|
};
|
|
|
|
meta = with 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 ];
|
|
};
|
|
}
|