mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 14:41:17 +00:00
21 lines
586 B
Nix
21 lines
586 B
Nix
{ lib, stdenv, fetchzip }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "abcMIDI";
|
|
version = "2021.10.11";
|
|
|
|
src = fetchzip {
|
|
url = "https://ifdo.ca/~seymour/runabc/${pname}-${version}.zip";
|
|
sha256 = "sha256-2M6nCJD1ovW8Wzw+ucii5PjeNTOiTletor7MPCMPl38=";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|