diff options
| author | Nicolas Graves <ngraves@ngraves.fr> | 2026-02-09 18:08:06 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2026-03-03 09:28:21 +0000 |
| commit | bd0fc2f1b1f65fc2b4737bc1b0069c959c1b9f1d (patch) | |
| tree | ba3bacbbfb8bf3e353e7030d0e8ece7644ad3bdc | |
| parent | 9a423904931167eda68f2a114ca35c17077e2ffd (diff) | |
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 <sharlatanus@gmail.com>
| -rw-r--r-- | gnu/packages/music.scm | 68 |
1 files changed, 35 insertions, 33 deletions
diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm index b0fda6023ae..726c28dbc7d 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 |
