diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2023-07-09 02:00:00 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2023-07-09 02:00:10 +0200 |
commit | 8a9a7ae36ed24eaa012041110d131ab7cee96023 (patch) | |
tree | 7660925274b90b1cf0da472ca099d4fe44b6a0c9 | |
parent | 0f766e8439f31738322817f6304a6110e374c057 (diff) | |
download | guix-8a9a7ae36ed24eaa012041110d131ab7cee96023.tar.gz guix-8a9a7ae36ed24eaa012041110d131ab7cee96023.zip |
gnu: aumix: Use Web Archive URLs.
* gnu/packages/linux.scm (aumix)[source, home-page]:
Use copies archived by the Wayback Machine.
-rw-r--r-- | gnu/packages/linux.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 7214dcae2f..f548b7307d 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -3476,6 +3476,7 @@ settings.") (source (origin (method url-fetch) (uri (string-append + "https://web.archive.org/web/20211201184543/" "http://www.jpj.net/~trevor/aumix/releases/aumix-" version ".tar.bz2")) (sha256 @@ -3486,7 +3487,8 @@ settings.") ;; Allow compilation with GCC 10. '(#:configure-flags '("CFLAGS=-O2 -g -fcommon"))) (inputs (list ncurses)) - (home-page "http://www.jpj.net/~trevor/aumix.html") + (home-page (string-append "https://web.archive.org/web/20211201184543/" + "http://jpj.net/~trevor/aumix.html")) (synopsis "Audio mixer for X and the console") (description "Aumix adjusts an audio mixer from X, the console, a terminal, |