aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/musl.scm
blob: e8c51036d7de0b48585b0aef92cc181a385d7daf (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 © 2016 Vincent Legoll <vincent.legoll@gmail.com>
;;; Copyright © 2016 Ricardo Wurmus <rekado@elephly.net>
;;; Copyright © 2018, 2019, 2020 Tobias Geerinckx-Rice <me@tobias.gr>
;;;
;;; 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 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.2")
    (source (origin
              (method url-fetch)
              (uri (string-append "https://www.musl-libc.org/releases/"
                                  "musl-" version ".tar.gz"))
              (sha256
               (base32
                "1p8r6bac64y98ln0wzmnixysckq3crca69ys7p16sy9d04i975lv"))))
    (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)))
>...* gnu/packages/gdb.scm (gdb-8.2): Replace by... (gdb-9.2): ... this. Maxim Cournoyer 2021-01-13Merge branch 'staging' into 'core-updates'....Conflicts: gnu/local.mk gnu/packages/cmake.scm gnu/packages/curl.scm gnu/packages/gl.scm gnu/packages/glib.scm gnu/packages/guile.scm gnu/packages/node.scm gnu/packages/openldap.scm gnu/packages/package-management.scm gnu/packages/python-xyz.scm gnu/packages/python.scm gnu/packages/tls.scm gnu/packages/vpn.scm gnu/packages/xorg.scm Maxim Cournoyer (schiffbruch)[native-inputs]: Remove GCC-11. * gnu/packages/music.scm (liquidsfz, geonkick)[native-inputs]: Remove GCC-9. * gnu/packages/fcitx5.scm (fcitx5, libime, fcitx5-configtool)[native-inputs]: Likewise. * gnu/packages/wine.scm (dxvk32)[native-inputs]: Likewise. * gnu/packages/ftp.scm (libfilezilla)[native-inputs]: Remove GCC-8. * gnu/packages/image.scm (blurhash)[native-inputs]: Likewise. * gnu/packages/jami.scm (libring)[native-inputs]: Likewise. * gnu/packages/pdf.scm (xournalpp)[native-inputs]: Likewise. * gnu/packages/telegram.scm (webrtc-for-telegram-desktop, telegram-desktop)[native-inputs]: Likewise. Marius Bakke 2021-12-13gnu: Further simplify package inputs....This is the result of running: ./pre-inst-env guix style --input-simplification=safe and manually undoing changes on a dozen of packages to reduce rebuilds (derivations for emacs, icecat, and libreoffice are unchanged.) Ludovic Courtès 2021-12-13gnu: Simplify package inputs....This commit was obtained by running: ./pre-inst-env guix style without any additional argument. Ludovic Courtès 2021-11-10gnu: fcitx5-configtool: Update to 5.0.8....* gnu/packages/fcitx5.scm (fcitx5-configtool): Update to 5.0.8. Signed-off-by: 宋文武 <iyzsong@member.fsf.org> dan 2021-11-10gnu: fcitx5-qt: Update to 5.0.7....* gnu/packages/fcitx5.scm (fcitx5-qt): Update to 5.0.7. Signed-off-by: 宋文武 <iyzsong@member.fsf.org> dan 2021-11-10gnu: fcitx5-gtk: Update to 5.0.9....* gnu/packages/fcitx5.scm (fcitx5-gtk): Update to 5.0.9. Signed-off-by: 宋文武 <iyzsong@member.fsf.org> dan 2021-11-10gnu: fcitx5: Update to 5.0.10....* gnu/packages/fcitx5.scm (fcitx5): Update to 5.0.10. Signed-off-by: 宋文武 <iyzsong@member.fsf.org> dan 2021-06-14gnu: Rename qtbase to qtbase-5....This change was automated via the following command: $ git ls-files | xargs sed -i 's/,qtbase)/,qtbase-5)/g' $ git ls-files | xargs sed -i 's/inherit qtbase)/inherit qtbase-5)/g' $ git ls-files | xargs sed -i 's/package-version qtbase)/package-version qtbase-5)/g' $ git checkout etc # to clear some spurious changes This is done so the qtbase package can be upgraded to version 6 in the following commit. Maxim Cournoyer 2021-06-09gnu: fcitx5-chinese-addons: Update to 5.0.6....* gnu/packages/fcitx5.scm (fcitx5-chinese-addons): Update to 5.0.6. Tobias Geerinckx-Rice 2021-06-09gnu: fcitx5-configtool: Update to 5.0.5....* gnu/packages/fcitx5.scm (fcitx5-configtool): Update to 5.0.5. Tobias Geerinckx-Rice 2021-06-09gnu: fcitx5-gtk: Update to 5.0.7....* gnu/packages/fcitx5.scm (fcitx5-gtk): Update to 5.0.7. [inputs]: Add fmt. Tobias Geerinckx-Rice 2021-06-09gnu: fcitx5-qt: Update to 5.0.6....* gnu/packages/fcitx5.scm (fcitx5-qt): Update to 5.0.6. Tobias Geerinckx-Rice 2021-06-09gnu: fcitx5: Update to fcitx5....* gnu/packages/fcitx5.scm (fcitx5): Update to fcitx5. [native-inputs]: Add gcc-9. Tobias Geerinckx-Rice 2021-06-09gnu: fcitx5-lua: Update to 5.0.5....* gnu/packages/fcitx5.scm (fcitx5-lua): Update to 5.0.5. Tobias Geerinckx-Rice 2021-06-09gnu: libime: Fix grammar in descriptions....* gnu/packages/fcitx5.scm (libime)[synopsis, description]: Exchange s. Tobias Geerinckx-Rice 2021-06-09gnu: libime: Update to 1.0.7....* gnu/packages/fcitx5.scm (libime): Update to 1.0.7. Tobias Geerinckx-Rice