diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2022-07-17 02:00:01 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2022-07-17 02:00:15 +0200 |
commit | a7c3eb8fdf0133bef17d67345aab1fe0731e8076 (patch) | |
tree | cb35a79cfbd17da81cb2dae623e3d54a07d80e10 /gnu/packages | |
parent | db0bab5b9e25028dcfdd0402e394508440466134 (diff) | |
download | guix-a7c3eb8fdf0133bef17d67345aab1fe0731e8076.tar.gz guix-a7c3eb8fdf0133bef17d67345aab1fe0731e8076.zip |
gnu: feh: Update to 3.9.
* gnu/packages/image-viewers.scm (feh): Update to 3.9.
[arguments]: Add "magic=1" to #:make-flags.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/image-viewers.scm | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gnu/packages/image-viewers.scm b/gnu/packages/image-viewers.scm index 1db169535e..53c895ec21 100644 --- a/gnu/packages/image-viewers.scm +++ b/gnu/packages/image-viewers.scm @@ -162,7 +162,7 @@ YouTube videos without requiring API and opens/downloads them using mpv/ytdl.") (define-public feh (package (name "feh") - (version "3.8") + (version "3.9") (home-page "https://feh.finalrewind.org/") (source (origin (method url-fetch) @@ -170,7 +170,7 @@ YouTube videos without requiring API and opens/downloads them using mpv/ytdl.") name "-" version ".tar.bz2")) (sha256 (base32 - "1a9bsq5j9sl2drzkab0hdhnamalpaszw9mz2prz6scrr5dak8g3z")))) + "185wwqd60r2rk6lzcvd6sl58589qfqrfnf7lqd6friyj84n9cjc6")))) (build-system gnu-build-system) (arguments `(#:phases (modify-phases %standard-phases (delete 'configure)) @@ -179,7 +179,8 @@ YouTube videos without requiring API and opens/downloads them using mpv/ytdl.") (list ,(string-append "CC=" (cc-for-target)) (string-append "PREFIX=" (assoc-ref %outputs "out")) "exif=1" - "inotify=1"))) + "inotify=1" + "magic=1"))) (native-inputs (list perl perl-test-command)) (inputs (list curl |