From mboxrd@z Thu Jan 1 00:00:00 1970 From: Alex Kost Subject: Re: [PATCH] gnu: Add nlopt. Date: Thu, 07 Apr 2016 23:48:59 +0300 Message-ID: <8737qx87r8.fsf@gmail.com> References: <87vb3twtgi.fsf@gnu.org> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:42494) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aoGrR-0000ga-1T for guix-devel@gnu.org; Thu, 07 Apr 2016 16:49:05 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aoGrN-0004fs-Q7 for guix-devel@gnu.org; Thu, 07 Apr 2016 16:49:04 -0400 In-Reply-To: <87vb3twtgi.fsf@gnu.org> (Roel Janssen's message of "Thu, 07 Apr 2016 13:26:21 +0200") List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: Roel Janssen Cc: guix-devel@gnu.org Roel Janssen (2016-04-07 14:26 +0300) wrote: > From 558175f69ba52446eca75ab79b641c8f0204093e Mon Sep 17 00:00:00 2001 > From: Roel Janssen > Date: Thu, 7 Apr 2016 13:22:35 +0200 > Subject: [PATCH] gnu: Add nlopt. > > * gnu/packages/maths.scm (nlopt): New variable. > --- > gnu/packages/maths.scm | 20 ++++++++++++++++++++ > 1 file changed, 20 insertions(+) > > diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm > index adebf09..6b9d79d 100644 > --- a/gnu/packages/maths.scm > +++ b/gnu/packages/maths.scm > @@ -911,7 +911,26 @@ sparse system of linear equations A x = b using Guassian elimination.") > (inputs > (alist-delete "pt-scotch" (package-inputs mumps-openmpi))))) > > +(define-public nlopt > + (package > + (name "nlopt") > + (version "2.4.2") > + (source (origin > + (method url-fetch) > + (uri (string-append "http://ab-initio.mit.edu/nlopt/nlopt-" > + version ".tar.gz")) > + (sha256 > + (base32 "12cfkkhcdf4zmb6h7y6qvvdvqjs2xf9sjpa3rl3bq76px4yn76c0")))) > + (build-system gnu-build-system) > + (arguments > + `(#:configure-flags '("--enable-shared"))) ; Also create a shared library. > + (home-page "http://ab-initio.mit.edu/wiki/") > + (synopsis "Library for non-linear optimization") > + (description "NLopt is a library for non-linear optimization, providing a > +common interface for a number of different free optimization routines available > +online as well as original implementations of various other algorithms.") > + (license license:lgpl3))) Where did you get that it is lgpl3? COPYING names GNU LGPL version 2.1 or later and MIT (which is 'expat'). I quickly looked at the source files: most of them do not have a license header, the others use the mentioned licenses, so I think it should be: (license (list license:lgpl2.1+ license:expat)) -- Alex