mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-03 03:23:17 +00:00
27 lines
639 B
Nix
27 lines
639 B
Nix
{
|
|
fetchFromGitHub,
|
|
lib,
|
|
stdenv,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "abcmidi";
|
|
version = "2024.12.06";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "sshlien";
|
|
repo = "abcmidi";
|
|
rev = "refs/tags/${finalAttrs.version}";
|
|
hash = "sha256-uSmkRoAy2tCvSy/jE0wxg2nhiQRF62zCwnr41YpRkXE=";
|
|
};
|
|
|
|
meta = {
|
|
homepage = "https://abc.sourceforge.net/abcMIDI/";
|
|
downloadPage = "https://ifdo.ca/~seymour/runabc/top.html";
|
|
license = lib.licenses.gpl2Plus;
|
|
description = "Utilities for converting between abc and MIDI";
|
|
platforms = lib.platforms.unix;
|
|
maintainers = [ lib.maintainers.dotlambda ];
|
|
};
|
|
})
|