aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/datamash.scm
blob: 182d281a5d140c2970d83ae07ae86c02c87725e3 (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
49
50
51
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2014, 2018 Eric Bavier <bavier@member.fsf.org>
;;; Copyright © 2016, 2017 Efraim Flashner <efraim@flashner.co.il>
;;;
;;; 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 datamash)
  #:use-module (guix packages)
  #:use-module (guix licenses)
  #:use-module (guix download)
  #:use-module (guix build-system gnu)
  #:use-module (gnu packages)
  #:use-module (gnu packages perl)
  #:use-module (gnu packages base))

(define-public datamash
  (package
    (name "datamash")
    (version "1.3")
    (source
     (origin
      (method url-fetch)
      (uri (string-append "mirror://gnu/datamash/datamash-"
                          version ".tar.gz"))
      (sha256
       (base32
        "19jpcv4ryvbz0476d6dgpxpbjkpmih4q84wj06nslls338bm5fzf"))
      (patches (search-patches "datamash-arm-tests.patch"))))
    (native-inputs
     `(("which" ,which)                 ;for tests
       ("perl" ,perl)))                 ;for help2man
    (build-system gnu-build-system)
    (home-page "https://www.gnu.org/software/datamash/")
    (synopsis "Scriptable statistics and data calculation")
    (description
     "Perform basic numeric, textual and statistical operations on plain text
files.  Designed to work within standard pipelines without additional code.")
    (license gpl3+)))
rt Guix packaged extensions and native manifests....Clément Lassieur 2023-10-15linux-modules: Fix module dependency loading....Tobias Geerinckx-Rice 2023-10-12accounts: Fix typo in comment....Ludovic Courtès 2023-10-08accounts: Ensure ‘last-change’ field of shadow entries is never zero....Ludovic Courtès 2023-10-01secret-service: Increase default handshake timeout....Ludovic Courtès 2023-10-01hurd-boot: Setup/dev/hdX, /dev/hdXsY IDE device node translators....Janneke Nieuwenhuizen 2023-08-20Revert "gnu: system: Add home-directory-permissions field to <user-account>."...Tobias Geerinckx-Rice 2023-08-25gnu: system: Add home-directory-permissions field to <user-account>....David Thompson 2023-07-19marionette: Allow passing custom OCR arguments....Bruno Victal 2023-07-13hurd-boot: Cater for netdde....Janneke Nieuwenhuizen 2023-07-13hurd-boot: Setup pci-arbiter and rumpdisk translators....Janneke Nieuwenhuizen 2023-06-14gnu: image: Add support for unformatted partitions....Efraim Flashner 2023-05-17hurd-boot: Symlink /hurd before setting up translators....Josselin Poiret 2023-05-06services: dbus-service, secret-service: Do not cause (fibers) to be loaded....Ludovic Courtès 2023-02-26file-systems: Validate 'no-diratime flag....Tobias Geerinckx-Rice 2023-01-30linux-container: 'container-excursion' forks to join the PID namespace....Ludovic Courtès 2023-01-30container: Correctly report exit status....Ludovic Courtès 2022-12-24hurd-boot: Fix list of devices with translators....Ludovic Courtès 2022-12-17activation: Firmware activation handles missing support in kernel....Marius Bakke 2022-12-12Merge branch 'version-1.4.0'Ludovic Courtès 2022-12-12image: Use 512 byte blocks for EFI partitions....Efraim Flashner 2022-12-10install: 'umount-cow-store' retries upon EBUSY....Ludovic Courtès 2022-11-28system: hurd: Create more ttys....Ludovic Courtès 2022-11-28hurd-boot: Explain why 'getxattr' cannot be used on GNU/Hurd....Ludovic Courtès 2022-11-28hurd-boot: Create more PTY nodes....Ludovic Courtès 2022-11-20file-systems: Always do recursive bind mounts....Ricardo Wurmus 2022-11-17tests: root-unmount: Wait for the first QEMU process to finish....Ludovic Courtès 2022-11-15install: Validate symlink target in evaluate-populate-directive....Maxim Cournoyer 2022-11-15linux-modules: Add 'load-pci-device-database'....Ludovic Courtès 2022-11-15linux-modules: Add support for listing PCI devices....Ludovic Courtès