diff options
author | jgart <jgart@dismail.de> | 2022-10-11 16:05:43 -0500 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2022-10-13 12:28:16 +0100 |
commit | 10d429f2fce321d8285684503094694ec3979865 (patch) | |
tree | c7135237453e2d47411e22ae808ecabd2c90121a /gnu/packages/entr.scm | |
parent | f22bc5fd5e195799a3936715f77a67b6efab4f9d (diff) | |
download | guix-10d429f2fce321d8285684503094694ec3979865.tar.gz |
gnu: entr: Update to 5.2.
* gnu/packages/entr.scm (entr): Update to 5.2. Signed-off-by: Christopher Baines <mail@cbaines.net>
Diffstat (limited to 'gnu/packages/entr.scm')
-rw-r--r-- | gnu/packages/entr.scm | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/gnu/packages/entr.scm b/gnu/packages/entr.scm index 29fd5b7db6..b74a00fec3 100644 --- a/gnu/packages/entr.scm +++ b/gnu/packages/entr.scm @@ -5,6 +5,7 @@ ;;; Copyright © 2019, 2020 Tobias Geerinckx-Rice <me@tobias.gr> ;;; Copyright © 2020 Jakub Kądziołka <kuba@kadziolka.net> ;;; Copyright © 2021 Solene Rapenne <solene@perso.pw> +;;; Copyright © 2022 jgart <jgart@dismail.de> ;;; ;;; This file is part of GNU Guix. ;;; @@ -34,14 +35,14 @@ (define-public entr (package (name "entr") - (version "4.9") + (version "5.2") (source (origin (method url-fetch) - (uri (string-append "http://entrproject.org/code/entr-" + (uri (string-append "https://eradman.com/entrproject/code/entr-" version ".tar.gz")) (sha256 (base32 - "18h58k69f0qmqkknbcnhm5dz7mv5gr2blcq88qr62vz4zg9a8mp2")))) + "1063b33bqggyqd0h7cvcvznpgiy9s2zqkdsc1q622xdh8sfk0zi3")))) (build-system gnu-build-system) (arguments `(#:test-target "test" @@ -67,7 +68,7 @@ #t))))) (inputs (list bash coreutils ncurses)) - (home-page "http://entrproject.org/") + (home-page "https://eradman.com/entrproject/") (synopsis "Run arbitrary commands when files change") (description "entr is a zero-configuration tool with no external build or run-time |