aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/libbsd.scm
blob: 16a7e8fd895042d268fd1c602d00f884d8a34e96 (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
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2016 Leo Famulari <leo@famulari.name>
;;;
;;; 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 libbsd)
  #:use-module (guix build-system gnu)
  #:use-module (guix download)
  #:use-module (guix licenses)
  #:use-module (guix packages))

(define-public libbsd
  (package
    (name "libbsd")
    (version "0.10.0")
    (source (origin
              (method url-fetch)
              (uri (string-append "https://libbsd.freedesktop.org/releases/"
                                  "libbsd-" version ".tar.xz"))
              (sha256
               (base32
                "11x8q45jvjvf2dvgclds64mscyg10lva33qinf2hwgc84v3svf1l"))))
    (build-system gnu-build-system)
    (arguments
     '(#:configure-flags '("--disable-static")))
    (synopsis "Utility functions from BSD systems")
    (description "This library provides useful functions commonly found on BSD
systems, and lacking on others like GNU systems, thus making it easier to port
projects with strong BSD origins, without needing to embed the same code over
and over again on each project.")
    (home-page "https://libbsd.freedesktop.org/wiki/")
    ;; This package is a collection of third-party functions that were
    ;; originally released under various non-copyleft licenses.
    (license (list bsd-2 bsd-3 bsd-4 expat isc public-domain
                   (non-copyleft "file://COPYING"
                                 "See COPYING in the distribution.")))))
t/gnu/packages/geo.scm?id=f7a12f9224fc03eae4a49c007912b5f0c4f2f296'>gnu: maknik: Update to 3.1.0-0.8110349 to fix build....Maxim Cournoyer 2022-09-13gnu: gnome-maps: Update to 43.rc....Maxim Cournoyer 2022-09-13gnu: gnome-online-accounts: Update to 3.45.2, remove "lib" output....Maxim Cournoyer 2022-09-12gnu: proj: Update to 9.1.0 and propagate libraries....Maxim Cournoyer 2022-09-11gnu: qmapshack: Add curl dependency....Guillaume Le Vaillant 2022-09-11gnu: qgis: Disable failing tests....Felix Gruber 2022-09-11gnu: gplates: Add curl dependency....Felix Gruber 2022-09-11gnu: openorienteering-mapper: Add curl dependency....Felix Gruber 2022-09-11gnu: python-cartopy: Update to 0.20.3....Felix Gruber 2022-09-11gnu: python-pyproj: Update to 3.3.1....Felix Gruber 2022-09-11gnu: proj: Update to 9.0.1....Felix Gruber 2022-09-11gnu: xygrib: Build against proj-7....Felix Gruber 2022-09-11gnu: Add proj-7....Felix Gruber 2022-09-02gnu: qgis: Update to 3.26.2....Guillaume Le Vaillant