This is an automated email from the git hooks/post-receive script.
guix_mirror_bot pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new bd0fc2f1b1 gnu: jack-capture: Update to 0.9.73-0.a539d44.
bd0fc2f1b1 is described below
commit bd0fc2f1b1f65fc2b4737bc1b0069c959c1b9f1d
Author: Nicolas Graves <[email protected]>
AuthorDate: Mon Feb 9 18:08:06 2026 +0100
gnu: jack-capture: Update to 0.9.73-0.a539d44.
* gnu/packages/music.scm (jack-capture): Update to 0.9.73-0.a539d44.
[arguments]: Rewrite them, improve style.
Merges: https://codeberg.org/guix/guix/pulls/6270
Change-Id: Ie12855d42679da8cb1c949e90b803cb18face68f
Signed-off-by: Sharlatan Hellseher <[email protected]>
---
gnu/packages/music.scm | 68 ++++++++++++++++++++++++++------------------------
1 file changed, 35 insertions(+), 33 deletions(-)
diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm
index b0fda6023a..726c28dbc7 100644
--- a/gnu/packages/music.scm
+++ b/gnu/packages/music.scm
@@ -3571,40 +3571,42 @@ allows you to send JACK MIDI events (i.e. play) using
your PC keyboard.")
(license license:bsd-2)))
(define-public jack-capture
- (package
- (name "jack-capture")
- (version "0.9.73")
- (source (origin
- (method git-fetch)
- (uri (git-reference
- (url "https://github.com/kmatheussen/jack_capture")
- (commit version)))
- (file-name (string-append name "-" version "-checkout"))
- (sha256
- (base32
- "0jcqky96q8xgya6wqv1p8pj9fkf2wh7ynl67ah7x5bn3basgfclf"))))
- (build-system gnu-build-system)
- (arguments
- `(#:make-flags
- (list (string-append "PREFIX=" (assoc-ref %outputs "out")))
- #:tests? #f ; there are none
- #:phases
- (modify-phases %standard-phases
- (delete 'configure))))
- (native-inputs
- (list pkg-config which))
- (inputs
- (list gtk+-2
- jack-2
- libogg
- liblo
- lame
- libsndfile))
- (home-page "https://github.com/kmatheussen/jack_capture")
- (synopsis "Program for recording sound files with JACK")
- (description "This is a program for recording sound files with JACK. It
+ (let ((commit "a539d444d388c4cfed7279e385830e7767d59c41")
+ (revision "0"))
+ (package
+ (name "jack-capture")
+ (version (git-version "0.9.73" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/kmatheussen/jack_capture")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0c0f8wgy4g4cfkmcarbqbx079yh9vzxqir3vddxmvc8y5rjsydnq"))))
+ (build-system gnu-build-system)
+ (arguments
+ (list
+ #:make-flags #~(list (string-append "PREFIX=" #$output))
+ #:tests? #f ; there are none
+ #:phases
+ #~(modify-phases %standard-phases
+ (delete 'configure))))
+ (native-inputs
+ (list pkg-config which))
+ (inputs
+ (list gtk+-2
+ jack-2
+ libogg
+ liblo
+ lame
+ libsndfile))
+ (home-page "https://github.com/kmatheussen/jack_capture")
+ (synopsis "Program for recording sound files with JACK")
+ (description "This is a program for recording sound files with JACK. It
can connect to any JACK port and record the output into a stereo WAV file.")
- (license license:gpl2+)))
+ (license license:gpl2+))))
(define-public jack-select
(package