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.") | |||
| 3571 | (license license:bsd-2))) | 3571 | (license license:bsd-2))) |
| 3572 | 3572 | ||
| 3573 | (define-public jack-capture | 3573 | (define-public jack-capture |
| 3574 | (package | 3574 | (let ((commit "a539d444d388c4cfed7279e385830e7767d59c41") |
| 3575 | (name "jack-capture") | 3575 | (revision "0")) |
| 3576 | (version "0.9.73") | 3576 | (package |
| 3577 | (source (origin | 3577 | (name "jack-capture") |
| 3578 | (method git-fetch) | 3578 | (version (git-version "0.9.73" revision commit)) |
| 3579 | (uri (git-reference | 3579 | (source |
| 3580 | (url "https://github.com/kmatheussen/jack_capture") | 3580 | (origin |
| 3581 | (commit version))) | 3581 | (method git-fetch) |
| 3582 | (file-name (string-append name "-" version "-checkout")) | 3582 | (uri (git-reference |
| 3583 | (sha256 | 3583 | (url "https://github.com/kmatheussen/jack_capture") |
| 3584 | (base32 | 3584 | (commit commit))) |
| 3585 | "0jcqky96q8xgya6wqv1p8pj9fkf2wh7ynl67ah7x5bn3basgfclf")))) | 3585 | (file-name (git-file-name name version)) |
| 3586 | (build-system gnu-build-system) | 3586 | (sha256 |
| 3587 | (arguments | 3587 | (base32 "0c0f8wgy4g4cfkmcarbqbx079yh9vzxqir3vddxmvc8y5rjsydnq")))) |
| 3588 | `(#:make-flags | 3588 | (build-system gnu-build-system) |
| 3589 | (list (string-append "PREFIX=" (assoc-ref %outputs "out"))) | 3589 | (arguments |
| 3590 | #:tests? #f ; there are none | 3590 | (list |
| 3591 | #:phases | 3591 | #:make-flags #~(list (string-append "PREFIX=" #$output)) |
| 3592 | (modify-phases %standard-phases | 3592 | #:tests? #f ; there are none |
| 3593 | (delete 'configure)))) | 3593 | #:phases |
| 3594 | (native-inputs | 3594 | #~(modify-phases %standard-phases |
| 3595 | (list pkg-config which)) | 3595 | (delete 'configure)))) |
| 3596 | (inputs | 3596 | (native-inputs |
| 3597 | (list gtk+-2 | 3597 | (list pkg-config which)) |
| 3598 | jack-2 | 3598 | (inputs |
| 3599 | libogg | 3599 | (list gtk+-2 |
| 3600 | liblo | 3600 | jack-2 |
| 3601 | lame | 3601 | libogg |
| 3602 | libsndfile)) | 3602 | liblo |
| 3603 | (home-page "https://github.com/kmatheussen/jack_capture") | 3603 | lame |
| 3604 | (synopsis "Program for recording sound files with JACK") | 3604 | libsndfile)) |
| 3605 | (description "This is a program for recording sound files with JACK. It | 3605 | (home-page "https://github.com/kmatheussen/jack_capture") |
| 3606 | (synopsis "Program for recording sound files with JACK") | ||
| 3607 | (description "This is a program for recording sound files with JACK. It | ||
| 3606 | can connect to any JACK port and record the output into a stereo WAV file.") | 3608 | can connect to any JACK port and record the output into a stereo WAV file.") |
| 3607 | (license license:gpl2+))) | 3609 | (license license:gpl2+)))) |
| 3608 | 3610 | ||
| 3609 | (define-public jack-select | 3611 | (define-public jack-select |
| 3610 | (package | 3612 | (package |
