guix-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [PATCH 2/3] gnu: Add libbsd.


From: Ludovic Courtès
Subject: Re: [PATCH 2/3] gnu: Add libbsd.
Date: Thu, 07 Apr 2016 23:19:24 +0200
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/24.5 (gnu/linux)

Leo Famulari <address@hidden> skribis:

> * gnu/packages/libbsd.scm: New file.
> * gnu-system.am (GNU_SYSTEM_MODULES): Add it.

I lost track of the discussion, but it’d be sad if simple packages like
this were stuck in review forever.  :-)

In general, for simple additions like this, consider yourself entitled
to push after some time has passed, as noted in ‘HACKING’.

[...]

> +(define-public libbsd
> +  (package
> +    (name "libbsd")
> +    (version "0.8.2")
> +    (source (origin
> +              (method url-fetch)
> +              (uri (string-append "https://libbsd.freedesktop.org/releases/";
> +                                  "libbsd-" version ".tar.xz"))
> +              (sha256
> +               (base32
> +                "02i5brb2007sxq3mn862mr7yxxm0g6nj172417hjyvjax7549xmj"))))
> +    (build-system gnu-build-system)
> +    (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/";)
> +    (license (list bsd-2 bsd-3 bsd-4 bsd-style expat isc public-domain))))

Please mention in a comment above what this license list means: is it at
the user’s choice, a mixture of all, etc.  Note that ‘bsd-style’ is a
procedure, and is deprecated (‘guix lint’ should warn.)

Otherwise LGTM, thanks!

Ludo’.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]