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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
585 B
Nix
Raw Normal View History

{ lib, stdenv, fetchzip }:
2017-09-15 08:06:38 +00:00
stdenv.mkDerivation rec {
pname = "abcMIDI";
2024-05-01 08:44:37 +00:00
version = "2024.04.30";
2017-09-15 08:06:38 +00:00
2017-12-13 19:07:06 +00:00
src = fetchzip {
url = "https://ifdo.ca/~seymour/runabc/${pname}-${version}.zip";
2024-05-01 08:44:37 +00:00
hash = "sha256-Yw/EQZlGTYxouRL1Tf4TDSNWMleB7vKzWg4n6sw5d4Q=";
2017-09-15 08:06:38 +00:00
};
meta = with lib; {
homepage = "https://abc.sourceforge.net/abcMIDI/";
downloadPage = "https://ifdo.ca/~seymour/runabc/top.html";
2017-09-15 08:06:38 +00:00
license = licenses.gpl2Plus;
2017-12-03 17:11:24 +00:00
description = "Utilities for converting between abc and MIDI";
2018-01-26 01:17:46 +00:00
platforms = platforms.unix;
2017-09-15 08:06:38 +00:00
maintainers = [ maintainers.dotlambda ];
};
}