diff options
| author | Leo Famulari <leo@famulari.name> | 2023-02-02 12:16:13 +0100 | 
|---|---|---|
| committer | Leo Famulari <leo@famulari.name> | 2023-03-26 16:00:59 -0400 | 
| commit | d9ea98027952dd34f85a7fcce5eb2c10e33a1b4e (patch) | |
| tree | 701f24c770075f5e5dddea69b2209c6475dd1357 /gnu/packages/w3m.scm | |
| parent | 8304634260bbedfca8a6ed87e5d84b619be1e3fd (diff) | |
gnu: Add a pinned-version variant of w3m.
* gnu/packages/w3m.scm (w3m-for-tests): New variable.
Diffstat (limited to 'gnu/packages/w3m.scm')
| -rw-r--r-- | gnu/packages/w3m.scm | 23 | 
1 files changed, 22 insertions, 1 deletions
| diff --git a/gnu/packages/w3m.scm b/gnu/packages/w3m.scm index 39d5e3c37f..498bf0f111 100644 --- a/gnu/packages/w3m.scm +++ b/gnu/packages/w3m.scm @@ -1,6 +1,6 @@  ;;; GNU Guix --- Functional package management for GNU  ;;; Copyright © 2013 Nikita Karetnikov <nikita@karetnikov.org> -;;; Copyright © 2016, 2017, 2018 Leo Famulari <leo@famulari.name> +;;; Copyright © 2016, 2017, 2018, 2023 Leo Famulari <leo@famulari.name>  ;;; Copyright © 2016 Kei Kebreau <kkebreau@posteo.net>  ;;; Copyright © 2016, 2019 Efraim Flashner <efraim@flashner.co.il>  ;;; Copyright © 2018 Rutger Helling <rhelling@mykolab.com> @@ -42,6 +42,9 @@  (define-public w3m    (package      (name "w3m") +    ;; When updating, be careful not to change the derivation of w3m-for-tests, +    ;; unless you mean to. Changing w3m-for-tests will cause thousands of +    ;; rebuilds via the reverse dependency graph of xdg-utils.      (version "0.5.3+git20230121")      (source (origin                (method git-fetch) @@ -86,3 +89,21 @@ window.  Moreover, w3m can be used as a text formatting tool which  typesets HTML into plain text.")      (license (x11-style "file://doc/README"                          "See 'doc/README' in the distribution.")))) + +;; Used in the test suite of xdg-utils +(define-public w3m-for-tests +  (hidden-package +   (package +     (inherit w3m) +     (name "w3m") +     (version "0.5.3+git20230121") +     (source (origin +               (method git-fetch) +               ;; Debian's fork of w3m is the only one that is still maintained. +               (uri (git-reference +                     (url "https://salsa.debian.org/debian/w3m.git") +                     (commit (string-append "v" version)))) +               (file-name (git-file-name name version)) +               (sha256 +                (base32 +                 "0nvhxsqxgxjrr62mvxzhhfzvbvg56g19vlqcgb8mh2x1daazk5ms"))))))) | 
