;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2016 Vincent Legoll ;;; Copyright © 2016 Ricardo Wurmus ;;; Copyright © 2018–2020, 2022 Tobias Geerinckx-Rice ;;; Copyright © 2024 Efraim Flashner ;;; ;;; 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 musl) #:use-module (guix download) #:use-module (guix packages) #:use-module (guix gexp) #:use-module (guix build-system gnu) #:use-module ((guix licenses) #:prefix license:) #:use-module (gnu packages) #:use-module (gnu packages bash)) (define-public musl (package (name "musl") (version "1.2.5") (source (origin (method url-fetch) (uri (string-append "https://www.musl-libc.org/releases/" "musl-" version ".tar.gz")) (sha256 (base32 "1r3mgky9d19b2285s274qxzlgs7sncx8plm01vd691sdx2xii8d9")))) (build-system gnu-build-system) (arguments (list #:tests? #f ; musl has no tests #:configure-flags #~(list "--enable-wrapper=all" (string-append "--syslibdir=" #$output "/lib")) #:license-file-regexp "COPYRIGHT")) (inputs (list bash-minimal)) (synopsis "Small C standard library") (description "musl is a simple and lightweight C standard library. It strives to be correct in the sense of standards-conformance and safety.") (home-page "https://musl.libc.org") (properties `((release-monitoring-url . ,home-page))) ;; Musl as a whole is released under the Expat license. Parts of it are ;; derived from various third-party projects that are released under ;; non-copyleft licenses. See the COPYRIGHT file for details. (license license:expat))) href='/guix/log/nix/libutil/util.hh?id=aaafd19bd1e37265de07e246286a6819792c25b4&showmsg=1'>Expand)Author 2020-12-08daemon: 'Agent' constructor takes a list of environment variables....* nix/libutil/util.hh (struct Agent)[Agent]: Add 'env' parameter. * nix/libutil/util.cc (Agent::Agent): Honor it. Ludovic Courtès 2020-09-14daemon: Move 'Agent' to libutil....* nix/libstore/build.cc (DerivationGoal::tryBuildHook): Add "offload" to 'args' and pass settings.guixProgram as the first argument to Agent::Agent. (pathNullDevice, commonChildInit, Agent, Agent::Agent) (Agent::~Agent): Move to... * nix/libutil/util.cc: ... here. * nix/libutil/util.hh (struct Agent, commonChildInit): New declarations. Ludovic Courtès /td>Josselin Poiret 2023-02-12gnu: vim: Update to 9.0.1303....* gnu/packages/vim.scm (vim): Update to 9.0.1303. Efraim Flashner 2023-02-09gnu: tree-sitter: Move to its own module....* gnu/packages/text-editors.scm (tree-sitter): Move to ... * gnu/packages/tree-sitter.scm: ... here, a new module. * gnu/packages/vim.scm: Use (gnu packages tree-sitter). * gnu/packages/emacs.scm: Use (gnu packages tree-sitter). * gnu/local.mk (GNU_SYSTEM_MODULES): Register tree-sitter.scm new module. Signed-off-by: Andrew Tropin <andrew@trop.in> Pierre Langlois 2023-02-07gnu: neovim: Update to 0.8.3....* gnu/packages/vim.scm (neovim): Update to 0.8.3. Signed-off-by: Christopher Baines <mail@cbaines.net> ギャラ 2023-01-10gnu: neovim: Update to 0.8.2....* gnu/packages/vim.scm (neovim): Update to 0.8.2. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Luis Henrique Gomes Higino 2022-12-18gnu: vim: Update to 9.0.1073....* gnu/packages/vim.scm (vim): Update to 9.0.1073. Efraim Flashner 2022-11-27gnu: vim: Update to 9.0.0954....* gnu/packages/vim.scm (vim): Update to 9.0.0954. Efraim Flashner