aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/less.scm
blob: 0aa4665840180cba0ac585fd67cfb7535d3b9df4 (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2012 Nikita Karetnikov <nikita@karetnikov.org>
;;;
;;; This file is part of GNU Guix.
;;;
;;; GNU Guix is free software; you can redistribute it and/or modify it
;;; under the terms of the GNU General Public License as published by
;;; the Free Software Foundation; either version 3 of the License, or (at
;;; your option) any later version.
;;;
;;; GNU Guix is distributed in the hope that it will be useful, but
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
;;; GNU General Public License for more details.
;;;
;;; You should have received a copy of the GNU General Public License
;;; along with GNU Guix.  If not, see <http://www.gnu.org/licenses/>.

(define-module (gnu packages less)
  #:use-module (guix licenses)
  #:use-module (gnu packages ncurses)
  #:use-module (guix packages)
  #:use-module (guix download)
  #:use-module (guix build-system gnu))

(define-public less
  (package
    (name "less")
    (version "487")
    (source
     (origin
      (method url-fetch)
      (uri (string-append "mirror://gnu/less/less-"
                          version ".tar.gz"))
      (sha256
       (base32
        "01i7n6jaxwmww3pasy3hg38zc6x7jw0w05mqqvh6caqbrdaq9p7k"))))
    (build-system gnu-build-system)
    (inputs `(("ncurses" ,ncurses)))
    (home-page "https://www.gnu.org/software/less/")
    (synopsis "Paginator for terminals")
    (description
     "GNU less is a pager, a program that allows you to view large amounts
of text in page-sized chunks.  Unlike traditional pagers, it allows both
backwards and forwards movement through the document.  It also does not have
to read the entire input file before starting, so it starts faster than most
text editors.")
    (license gpl3+))) ; some files are under GPLv2+
7a1efed9e12ce0e2c470d7b0601ae70c72b010b'>tests: Check the mtime and permissions of substituted items....Ludovic Courtès 2020-12-19tests: Check the build trace for hash mismatches on substitutes....Ludovic Courtès 2020-09-14tests: Remove one 'delete-paths' call in 'tests/store.scm'....Ludovic Courtès 2020-09-14daemon: Spawn 'guix authenticate' once for all....Ludovic Courtès 2020-09-11store: Test 'import-paths' with unauthorized and unsigned nar bundles....Ludovic Courtès 2020-08-28store: 'with-store' returns as many values as its body....Ludovic Courtès 2020-06-27daemon: Recognize SHA3 and BLAKE2s....Ludovic Courtès 2020-05-22packages: Introduce <content-hash> and use it in <origin>....Ludovic Courtès 2020-05-22tests: Test 'add-to-store' with several hash algorithms....Ludovic Courtès 2020-05-14store: 'mapm/accumulate-builds' preserves '%current-target-system'....Ludovic Courtès 2020-04-04store: 'with-store' doesn't close the store upon abort....Ludovic Courtès 2020-03-29store: Add 'map/accumulate-builds'....Ludovic Courtès 2020-03-22store: Add 'with-build-handler'....Ludovic Courtès 2019-10-16daemon: Make 'profiles/per-user' non-world-writable....Ludovic Courtès 2019-06-10store: 'build-things' accepts derivation/output pairs....Ludovic Courtès