;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2015 Taylan Ulrich Bayırlı/Kammer ;;; Copyright © 2016 Efraim Flashner ;;; Copyright © 2016 Tobias Geerinckx-Rice ;;; ;;; 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 . (define-module (gnu packages moreutils) #:use-module ((guix licenses) #:prefix l:) #:use-module (guix packages) #:use-module (guix download) #:use-module (guix build-system gnu) #:use-module (gnu packages perl) #:use-module (gnu packages xml) #:use-module (gnu packages docbook)) (define-public moreutils (package (name "moreutils") (version "0.59") (source (origin (method url-fetch) (uri (list (string-append "mirror://debian/pool/main/m/moreutils/moreutils_" version ".orig.tar.gz") ;; The main Debian mirrors only hold the current packages. (string-append "http://snapshot.debian.org/archive/debian/20161223T212806Z" "/pool/main/m/moreutils/moreutils_0.59.orig.tar.gz"))) (sha256 (base32 "1d6ik3j4lwp90vb93p7yv60k6vk2chz448d1z9xrmxvv371i33m4")))) (build-system gnu-build-system) ;; For building the manual pages. (native-inputs `(("docbook-xml" ,docbook-xml-4.4) ("docbook-xsl" ,docbook-xsl) ("libxml2" ,libxml2) ("libxslt" ,libxslt))) (inputs `(("perl" ,perl))) (arguments `(#:phases (modify-phases %standard-phases (delete 'configure)) ; no configure script #:make-flags (list (string-append "PREFIX=" (assoc-ref %outputs "out")) (string-append "DOCBOOKXSL=" (assoc-ref %build-inputs "docbook-xsl") "/xml/xsl/" ,(package-name docbook-xsl) "-" ,(package-version docbook-xsl)) "CC=gcc"))) (home-page "https://joeyh.name/code/moreutils/") (synopsis "Miscellaneous general-purpose command-line tools") (description "Moreutils is a collection of general-purpose command-line tools to augment the traditional Unix toolbox.") (license l:gpl2+))) 4-04-08gexp: Add #:guile parameter to ‘gexp->file’ and ‘scheme-file’....Ludovic Courtès 2023-12-22gexp: #:references-graphs accepts and honors <gexp-input> records....Ludovic Courtès 2023-12-22gexp: Add compiler for <gexp-input>....Ludovic Courtès 2023-11-25tests: Import (guix build syscalls) when (guix build store-copy) is used....Ludovic Courtès 2022-11-11grafts: Run with a UTF-8 locale....Ludovic Courtès 2022-10-22Remove now unnecessary uses of (guix grafts)....Ludovic Courtès 2022-05-25tests: Fix wrong target triplets....Josselin Poiret 2022-05-01gexp: Add 'references-file'....Ludovic Courtès 2022-03-13gexp: Correctly handle #$output in 'gexp->approximate-sexp'....Maxime Devos 2022-03-13gexp: Correctly handle unquoting S-exp objects....Maxime Devos 2022-02-16gexp: Preserve source location for #~ and #$ read extensions....Ludovic Courtès 2022-02-15gexp: 'computed-file' always uses a native Guile....Ludovic Courtès 2022-02-11tests: Pass #:guile to 'computed-file' & co....Ludovic Courtès 2021-11-27gexp: 'file-append' correctly handles bases without an expander....Ludovic Courtès 2021-11-17Merge branch 'master' into core-updates-frozenLudovic Courtès 2021-11-16tests: Factorize 'file=?'....Ludovic Courtès