diff options
author | Andrew Wong <wongandj@icloud.com> | 2025-04-22 19:28:25 -0400 |
---|---|---|
committer | Andreas Enge <andreas@enge.fr> | 2025-04-30 17:44:29 +0200 |
commit | bb5a1318c60e9f76df7322a03cc1a8f6fbd77dc4 (patch) | |
tree | e2f0a6e1c28786065c28f56b8a913ffbfc62586a | |
parent | d3d961a9fa4933ebea48602cea063e1b1d43bd1b (diff) |
gnu: a2jmidid: Update to 12.
* gnu/packages/music.scm (a2jmidid): Update to 12.
[source]: Switch to new, maintained source and tarballs.
[home-page]: Switch to new homepage.
Change-Id: Ida0f3b82225b3b1395b06dbfc298fa6e8a98a205
Signed-off-by: Andreas Enge <andreas@enge.fr>
-rw-r--r-- | gnu/packages/music.scm | 21 |
1 files changed, 6 insertions, 15 deletions
diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm index e5c10b3065..4494eca3fc 100644 --- a/gnu/packages/music.scm +++ b/gnu/packages/music.scm @@ -7714,22 +7714,13 @@ It is provided as an LV2 plugin and as a standalone Jack application.") (define-public a2jmidid (package (name "a2jmidid") - (version "9") + (version "12") (source (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/jackaudio/a2jmidid") - (commit version))) - (modules '((guix build utils))) - (snippet - ;; Fix build for for riscv64-linux, same as: - ;; https://github.com/jackaudio/a2jmidid/pull/18 - '(substitute* "sigsegv.c" - (("!defined[(]__aarch64__[)]") - "!defined(__arch64__) && !defined(__riscv)"))) + (method url-fetch) + (uri (string-append "https://dl.ladish.org/a2jmidid/a2jmidid-" + version ".tar.bz2")) (sha256 - (base32 "1x6rcl3f4nklnx4p5jln9a7fpj9y7agjxs9rw7cccmwnski7pnsq")) - (file-name (git-file-name name version)))) + (base32 "1m05kbxkfw992pl23vfbg4s4rlhailkh04fa7bjdhr39j32q4qjk")))) (arguments (list #:tests? #f ; No tests. #:phases @@ -7755,7 +7746,7 @@ It is provided as an LV2 plugin and as a standalone Jack application.") (description "@code{a2jmidid} is a daemon that implements automatic bridging of ALSA midi devices to JACK midi devices.") - (home-page "https://github.com/jackaudio/a2jmidid") + (home-page "https://a2jmidid.ladish.org/") (license license:gpl2))) (define-public opustags |