;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2012 Nikita Karetnikov ;;; Copyright © 2014 Mark H Weaver ;;; ;;; 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 cpio) #:use-module (guix licenses) #:use-module (gnu packages) #:use-module (gnu packages autotools) #:use-module (guix packages) #:use-module (guix download) #:use-module (guix build-system gnu)) (define-public cpio (package (name "cpio") (version "2.13") (source (origin (method url-fetch) (uri (string-append "mirror://gnu/cpio/cpio-" version ".tar.bz2")) (sha256 (base32 "0vbgnhkawdllgnkdn6zn1f56fczwk0518krakz2qbwhxmv2vvdga")))) (build-system gnu-build-system) (home-page "https://www.gnu.org/software/cpio/") (synopsis "Manage cpio and tar file archives") (description "GNU cpio copies files into or out of cpio or tar archives. Indeed, many formats are supported, including legacy formats. The format is determined automatically by the program and is handled appropriately. Furthermore, the location of the archive is not important. It can be another file on the drive, a tape, or data on a pipe.") (license gpl3+))) ='q' value=''/>
AgeCommit message (Expand)Author
2024-12-18gnu: Add node alias for node-lts....The node alias should henceforth refer to versions of Node.js that are at least as recent as node-lts. * gnu/packages/node.scm (node): New variable. Change-Id: I1f19914715dda7da6bb45917e32b53227b480929 Jelle Licht
2024-12-18gnu: node: Rename variable to node-bootstrap and hide package....The package formerly known as node has security issues, so should only be used to bootstrap more recent and secure versions of node. * gnu/packages/node.scm (node): Rename to... (node-bootstrap): ... this, and make it a hidden package. Change-Id: I536a8f55faa14f8221915467c2981053f4c4d70e Jelle Licht
2024-12-18gnu: node-lts: Update to 20.18.1 [security fixes]....* gnu/packages/node.scm (node-lts): Update to 20.18.1. [origin]: Delete bundled brotli, ngtcp2 and uv. [:configure-flags]: Add shared-nghtcp2 flag. Add shared-nghttp3 flag. [#:phases]<delete-problematic-tests>: Remove tests that fail due to linking to unbundled libuv. Delete tests that depend on 64-bit time_t for 32-bit builds. [native-inputs]: Replace libuv by libuv-for-node-lts. [inputs]: Replace libuv by libuv-for-node-lts. Add ngtpc2, nghttp3. Change-Id: I932e64f212283b34f0affad65c3d9f92fdea3d79 Jelle Licht
2024-12-18gnu: llhttp-bootstrap: Update to 8.1.2....* gnu/packages/node.scm (llhttp-bootstrap): Update to 8.1.2. Change-Id: I4eff26889b2645c031fc9ea896657468d5752953 Jelle Licht
2024-12-18gnu: node-lts: Replace customized c-ares-for-node by c-ares....* gnu/packages/node.scm (node-lts) [native-inputs]: Replace c-ares-for-node by c-ares. [inputs]: Ditto. Change-Id: Ibef027d55c14e302d406d6478fed474f67c0d508 Jelle Licht
2024-12-18gnu: node: Replace customized nghttp2-for-node by nghttp2....* gnu/packages/node.scm (node) [native-inputs]: Replace nghttp2-for-node by nghttp2. [inputs]: Ditto. [arguments]<#:phases>: Adjust accordingly by skipping failing tests. Change-Id: Ia3d63ea1c428c1353d6ec6fda394ccb016eb6603 Jelle Licht
2024-08-31gnu: node: Fix build with zlib 1.3....* gnu/packages/node.scm (node)[source]: Adjust snippet to adjust a test to accept shorter version strings. Change-Id: If8384497035e44f4876357877941cbf175acf879 Efraim Flashner