~ruther/guix-local

58a44256629b89f7d0bbfd7cad4bac29f5b7bd16 — Sughosha 6 months ago 58ef8e9
gnu: noise-repellent: Update to 0.2.3.

* gnu/packages/audio.scm (noise-repellent): Update to 0.2.3.
[arguments]<#:configure-flags>: Remove "--prefix" flag.
[inputs]: Reorder; add libspecbleach.

Change-Id: I6281e3e91ec907df994914395b0c1f7f3fdabb57
1 files changed, 5 insertions(+), 9 deletions(-)

M gnu/packages/audio.scm
M gnu/packages/audio.scm => gnu/packages/audio.scm +5 -9
@@ 6113,23 6113,19 @@ itself uses a @acronym{STFT, short time Fourier transform} to process the audio.
(define-public noise-repellent
  (package
    (name "noise-repellent")
    (version "0.1.5")
    (version "0.2.3")
    (source (origin
              (method git-fetch)
              (uri (git-reference
                    (url "https://github.com/lucianodato/noise-repellent")
                    (commit version)))
              (file-name (string-append name "-" version "-checkout"))
                    (commit (string-append "v" version))))
              (file-name (git-file-name name version))
              (sha256
               (base32
                "0hb89x9i2knzan46q4nwscf5zmnb2nwf4w13xl2c0y1mx1ls1mwl"))))
                "0dq0rv7mndw0lqacl2nf9dmj4zzq19hfminzk3fzbppk5mh2rivp"))))
    (build-system meson-build-system)
    (arguments
     `(#:configure-flags
       (list (string-append "--prefix=" (assoc-ref %outputs "out")
                            "/lib/lv2"))))
    (inputs
     (list lv2 fftwf))
     (list fftwf libspecbleach lv2))
    (native-inputs
     (list pkg-config))
    (home-page "https://github.com/lucianodato/noise-repellent")