diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2020-06-03 02:00:03 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2020-06-03 02:21:23 +0200 |
commit | f295c0834624e57e439cc4a1da021212bfff42f3 (patch) | |
tree | 91a00920b14e24ef598da411a3fbe486d9e86b87 /gnu | |
parent | d6af27375dce80772488642211ade6608fa60456 (diff) | |
download | guix-f295c0834624e57e439cc4a1da021212bfff42f3.tar guix-f295c0834624e57e439cc4a1da021212bfff42f3.tar.gz |
gnu: bs1770gain: Deduplicate home page URLs.
* gnu/packages/audio.scm (bs1770gain)[source]: Re-use the HOME-PAGE
field in the snippet.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/audio.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm index ef1ff1ba5f..c8d15a3bb7 100644 --- a/gnu/packages/audio.scm +++ b/gnu/packages/audio.scm @@ -3374,6 +3374,7 @@ with support for HD extensions.") (package (name "bs1770gain") (version "0.7.0") + (home-page "https://manpages.debian.org/sid/bs1770gain/bs1770gain.1.en.html") (source (origin (method url-fetch) @@ -3383,7 +3384,7 @@ with support for HD extensions.") (base32 "0a2dcaxvxy5m3a5sb1lhplsymvz3ypaiidc5xn9qy01h53zvyvkp")) (modules '((guix build utils))) (snippet - '(begin + `(begin ;; XXX (substitute* (find-files "." "\\.[ch]$") (("^ \\* N..o.*") "")) @@ -3395,12 +3396,11 @@ with support for HD extensions.") "configure.ac" "configure") (("https?://bs1770gain[^/]*/") - "https://manpages.debian.org/sid/bs1770gain/bs1770gain.1.en.html")) + ,home-page)) #t)))) (build-system gnu-build-system) (inputs `(("ffmpeg" ,ffmpeg) ("sox" ,sox))) - (home-page "https://manpages.debian.org/sid/bs1770gain/bs1770gain.1.en.html") (synopsis "Tool to adjust loudness of media files") (description "BS1770GAIN is a loudness scanner compliant with ITU-R BS.1770 and its |