On Mon, 17 Aug 2015 04:05:58 +0200 Eric Dvorsak <e...@dvorsak.fr> wrote:
> * gnu/packages/libevent.scm (libev): New variable. > --- > gnu/packages/libevent.scm | 26 ++++++++++++++++++++++++++ > 1 file changed, 26 insertions(+) > > diff --git a/gnu/packages/libevent.scm b/gnu/packages/libevent.scm > index 88b13ec..efd8df0 100644 > --- a/gnu/packages/libevent.scm > +++ b/gnu/packages/libevent.scm > @@ -1,6 +1,7 @@ > ;;; GNU Guix --- Functional package management for GNU > ;;; Copyright © 2013, 2014, 2015 Ludovic Courtès <l...@gnu.org> > ;;; Copyright © 2015 Mark H Weaver <m...@netris.org> > +;;; Copyright © 2015 Eric Dvorsak <e...@dvorsak.fr> > ;;; > ;;; This file is part of GNU Guix. > ;;; > @@ -61,6 +62,31 @@ then add or remove events dynamically without > having to change the event loop.") > (license bsd-3))) > > +(define-public libev > + (package > + (name "libev") [...] > + (license > + (non-copyleft > + "file://LICENSE" > + "See LICENSE in the distribution.")))) From what I can tell looking at the license, this should be "(list bsd-2 gpl2+)" as it states: "If you do not delete the provisions above, a recipient may use your version of this file under either the BSD or the GPL." `~Eric