diff options
author | Artyom V. Poptsov <poptsov.artyom@gmail.com> | 2025-05-01 19:08:03 +0300 |
---|---|---|
committer | Artyom V. Poptsov <poptsov.artyom@gmail.com> | 2025-05-01 19:24:55 +0300 |
commit | 0dfd0cc5ed8954d5d1ad420aaa0982c00168faab (patch) | |
tree | 905b242728f85cab8bdf845386335bb2d37d6660 | |
parent | c4f25bbd7e15a4ab50a2efc61dbb3b26fb407338 (diff) | |
download | guix-0dfd0cc5ed8954d5d1ad420aaa0982c00168faab.tar.gz guix-0dfd0cc5ed8954d5d1ad420aaa0982c00168faab.zip |
gnu: detox: Update to 2.0.0.
* gnu/packages/admin.scm (detox): Update to 2.0.0.
[native-inputs]: Add bison and pkg-config.
[arguments]: Remove along with now unnecessary phases.
Change-Id: I2fdf5a9e1b76aecb5b379f48fda9de33a255e562
-rw-r--r-- | gnu/packages/admin.scm | 17 |
1 files changed, 3 insertions, 14 deletions
diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm index 25783b7e1e..5eb3d022c2 100644 --- a/gnu/packages/admin.scm +++ b/gnu/packages/admin.scm @@ -2916,7 +2916,7 @@ more stress mechanisms.") (define-public detox (package (name "detox") - (version "1.4.5") + (version "2.0.0") (source (origin (method git-fetch) (uri (git-reference @@ -2925,21 +2925,10 @@ more stress mechanisms.") (file-name (git-file-name name version)) (sha256 (base32 - "116bgpbkh3c96h6vq0880rmnpb5kbnnlvvkpsrcib6928bj8lfvi")))) + "0qix3ipvj5sn66id57k6gzilnz4f19jgwn4d72hj1jzi3m9f9k1h")))) (build-system gnu-build-system) (native-inputs - (list autoconf automake flex)) - (arguments - `(#:phases (modify-phases %standard-phases - (add-after 'unpack 'delete-configure - ;; The "configure" script is present, but otherwise the - ;; project is not bootstrapped: missing install-sh and - ;; Makefile.in, so delete it so the bootstrap phase will - ;; take over. - (lambda _ (delete-file "configure") #t)) - (replace 'check - (lambda _ - (invoke "./tests/test.sh" "src/detox")))))) + (list autoconf automake bison flex pkg-config)) (home-page "https://github.com/dharple/detox") (synopsis "Clean up file names") (description |