mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 18:03:04 +00:00
Merge pull request #334153 from dotlambda/abcmidi
abcmidi: 2024.07.26 -> 2024.08.11
This commit is contained in:
commit
89d7f81980
26
pkgs/by-name/ab/abcmidi/package.nix
Normal file
26
pkgs/by-name/ab/abcmidi/package.nix
Normal file
@ -0,0 +1,26 @@
|
||||
{
|
||||
fetchFromGitHub,
|
||||
lib,
|
||||
stdenv,
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation (finalAttrs: {
|
||||
pname = "abcmidi";
|
||||
version = "2024.08.11";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "sshlien";
|
||||
repo = "abcmidi";
|
||||
rev = "refs/tags/${finalAttrs.version}";
|
||||
hash = "sha256-ljRwRSF6Odv99ej8mmMjtf9NE0du7TtAypkw7W9TEYU=";
|
||||
};
|
||||
|
||||
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 ];
|
||||
};
|
||||
})
|
@ -1,20 +0,0 @@
|
||||
{ lib, stdenv, fetchzip }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "abcMIDI";
|
||||
version = "2024.07.26";
|
||||
|
||||
src = fetchzip {
|
||||
url = "https://ifdo.ca/~seymour/runabc/${pname}-${version}.zip";
|
||||
hash = "sha256-LOCr1EwEUY+Nwr+bgxpVq2fUn+SfGTPlEYUPhzlpUEM=";
|
||||
};
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://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 ];
|
||||
};
|
||||
}
|
@ -1476,8 +1476,6 @@ with pkgs;
|
||||
|
||||
abcm2ps = callPackage ../tools/audio/abcm2ps { };
|
||||
|
||||
abcmidi = callPackage ../tools/audio/abcmidi { };
|
||||
|
||||
abduco = callPackage ../tools/misc/abduco { };
|
||||
|
||||
acct = callPackage ../tools/system/acct { };
|
||||
|
Loading…
Reference in New Issue
Block a user