;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2016 Vincent Legoll ;;; Copyright © 2016 Ricardo Wurmus ;;; Copyright © 2018, 2019, 2020 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 musl) #:use-module (guix download) #:use-module (guix packages) #:use-module (guix build-system gnu) #:use-module ((guix licenses) #:prefix license:) #:use-module (gnu packages)) (define-public musl (package (name "musl") (version "1.2.1") (source (origin (method url-fetch) (uri (string-append "https://www.musl-libc.org/releases/" "musl-" version ".tar.gz")) (sha256 (base32 "0jz8fzwgvfyjgxjbpw35ixdglp2apqjvp8m386f6yr4zacc6xbv8")))) (build-system gnu-build-system) (arguments `(#:tests? #f ; musl has no tests #:configure-flags (list "--disable-gcc-wrapper"))) (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") ;; 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))) 6f9af4d4e20bee6e31790a16153'>gnu/packages/gawk.scm
AgeCommit message (Expand)Author
2022-11-24gnu: gawk: Update to 5.2.1....* gnu/packages/gawk.scm (gawk): Update to 5.2.1. Efraim Flashner
2022-09-08gnu: gawk: Update to 5.2.0....* gnu/packages/gawk.scm (gawk): Update to 5.2.0. Marius Bakke
2022-07-22Merge branch 'staging' into core-updatesMarius Bakke
2022-07-08gnu: Add cppawk and cppawk-egawk....* gnu/packages/gawk.scm (cppawk, cppawk-egawk): New variables. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Paul A. Patience
2022-07-08gnu: Add egawk-next....* gnu/packages/gawk.scm (egawk-next): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Paul A. Patience
2022-07-08gnu: Add gawk-mpfr....* gnu/packages/gawk.scm (gawk-mpfr): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Paul A. Patience
2022-07-08gnu: Use 'license:' prefix in (gnu packages gawk)....* gnu/packages/gawk.scm: Import (guix licenses) with 'license:' prefix. (gawk, mawk)[license]: Prefix with 'license:'. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Paul A. Patience
2022-06-26gnu: gawk: Use G-expressions and remove labels....* gnu/packages/gawk.scm (gawk)[arguments]: Convert to G-expression. Use SEARCH-INPUT-FILE instead of label. Marius Bakke
2022-06-26gnu: gawk: Update to 5.1.1....* gnu/packages/gawk.scm (gawk): Update to 5.1.1. [arguments]: Enable previously failing test. Marius Bakke