diff options
author | Marius Bakke <marius@gnu.org> | 2022-02-07 21:58:41 +0100 |
---|---|---|
committer | Marius Bakke <marius@gnu.org> | 2022-02-07 23:47:23 +0100 |
commit | 696e34e7217ed545af0d05c802f70c362a9f8df8 (patch) | |
tree | 984ecb67cec4407eb1cb38b04cb0e3f5b4aba6de /gnu/packages | |
parent | 2d78b27711d44f39fabf170d044b45247af7babe (diff) | |
download | guix-696e34e7217ed545af0d05c802f70c362a9f8df8.tar.gz |
gnu: clitest: Update to 0.4.0.
* gnu/packages/check.scm (clitest): Update to 0.4.0. [inputs]: Add BASH-MINIMAL. [arguments]: Remove trailing #t.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/check.scm | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm index 913c803a24..7315ebfe5e 100644 --- a/gnu/packages/check.scm +++ b/gnu/packages/check.scm @@ -209,17 +209,15 @@ source code editors and IDEs.") (define-public clitest (package (name "clitest") - (version "0.3.0") + (version "0.4.0") (home-page "https://github.com/aureliojargas/clitest") (source (origin (method git-fetch) - (uri (git-reference - (url home-page) - (commit (string-append "v" version)))) + (uri (git-reference (url home-page) (commit version))) (file-name (git-file-name name version)) (sha256 (base32 - "0zw5wra9hc717srmcar1wm4i34kyj8c49ny4bb7y3nrvkjp2pdb5")))) + "1p745mxiq3hgi3ywfljs5sa1psi06awwjxzw0j9c2xx1b09yqv4a")))) (build-system gnu-build-system) (arguments `(#:phases @@ -244,10 +242,12 @@ source code editors and IDEs.") (let ((out (assoc-ref outputs "out"))) (install-file "clitest" (string-append out "/bin")) (install-file "README.md" - (string-append out "/share/doc/clitest-" ,version)) - #t)))))) + (string-append out "/share/doc/clitest-" + ,version)))))))) (native-inputs (list perl)) ;for tests + (inputs + (list bash-minimal)) (synopsis "Command line test tool") (description "@command{clitest} is a portable shell script that performs automatic |