From b1646199f4aefa9c40f4b0971dedaad3e167abdd Mon Sep 17 00:00:00 2001 Message-ID: In-Reply-To: References: From: Javier Olaechea Date: Fri, 8 Nov 2024 18:51:09 -0500 Subject: [PATCH 2/3] gnu: entr: Improve package style. * gnu/packages/entr.scm (entr): Improve package style. The changes are the result of running ./pre-inst-env guix style entr. Change-Id: I9579e326f88c6066078f2df78a12431f3f4badd4 --- gnu/packages/entr.scm | 57 ++++++++++++++++++++++--------------------- 1 file changed, 29 insertions(+), 28 deletions(-) diff --git a/gnu/packages/entr.scm b/gnu/packages/entr.scm index bb09acd6aa..f84a217814 100644 --- a/gnu/packages/entr.scm +++ b/gnu/packages/entr.scm @@ -37,37 +37,38 @@ (define-public entr (package (name "entr") (version "5.6") - (source (origin - (method url-fetch) - (uri (string-append "https://eradman.com/entrproject/code/entr-" - version ".tar.gz")) - (sha256 - (base32 - "0kniklgnqv4j9carm78d3423wlwqw1ykxmlla4xmlfwdjbgvh8h2")))) + (source + (origin + (method url-fetch) + (uri (string-append "https://eradman.com/entrproject/code/entr-" + version ".tar.gz")) + (sha256 + (base32 "0kniklgnqv4j9carm78d3423wlwqw1ykxmlla4xmlfwdjbgvh8h2")))) (build-system gnu-build-system) (arguments `(#:test-target "test" - #:phases - (modify-phases %standard-phases - (replace 'configure - (lambda* (#:key outputs #:allow-other-keys) - (let ((out (assoc-ref outputs "out"))) - (setenv "CONFIG_SHELL" (which "bash")) - (setenv "CC" ,(cc-for-target)) - (setenv "PREFIX" out) - (setenv "MANPREFIX" (string-append out "/man")) - (invoke "./configure")))) - (add-before 'build 'remove-fhs-file-names - (lambda* (#:key inputs #:allow-other-keys) - (substitute* "entr.c" - (("/bin/sh" command) - (search-input-file inputs command)) - (("/bin/cat" command) - (search-input-file inputs command)) - (("/usr(/bin/clear)" _ command) - (search-input-file inputs command)))))))) - (inputs - (list bash coreutils ncurses)) + #:phases (modify-phases %standard-phases + (replace 'configure + (lambda* (#:key outputs #:allow-other-keys) + (let ((out (assoc-ref outputs "out"))) + (setenv "CONFIG_SHELL" + (which "bash")) + (setenv "CC" + ,(cc-for-target)) + (setenv "PREFIX" out) + (setenv "MANPREFIX" + (string-append out "/man")) + (invoke "./configure")))) + (add-before 'build 'remove-fhs-file-names + (lambda* (#:key inputs #:allow-other-keys) + (substitute* "entr.c" + (("/bin/sh" command) + (search-input-file inputs command)) + (("/bin/cat" command) + (search-input-file inputs command)) + (("/usr(/bin/clear)" _ command) + (search-input-file inputs command)))))))) + (inputs (list bash coreutils ncurses)) (home-page "https://eradman.com/entrproject/") (synopsis "Run arbitrary commands when files change") (description -- 2.46.0