From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:59777) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hDqfV-0007zX-OQ for guix-patches@gnu.org; Tue, 09 Apr 2019 09:20:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hDqfU-0000cR-L0 for guix-patches@gnu.org; Tue, 09 Apr 2019 09:20:05 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:37216) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hDqfT-0000bM-CF for guix-patches@gnu.org; Tue, 09 Apr 2019 09:20:04 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1hDqfS-00010Q-SA for guix-patches@gnu.org; Tue, 09 Apr 2019 09:20:02 -0400 Subject: [bug#35207] [PATCH 2/3] gnu: Add ocaml4.02-gsl. Resent-Message-ID: From: Ricardo Wurmus Message-ID: <20190409131330.12089-2-rekado@elephly.net> Date: Tue, 9 Apr 2019 15:13:29 +0200 In-Reply-To: <20190409131330.12089-1-rekado@elephly.net> References: <20190409131330.12089-1-rekado@elephly.net> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=utf8 List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 35207@debbugs.gnu.org * gnu/packages/ocaml.scm (ocaml4.02-gsl): New variable. --- gnu/packages/ocaml.scm | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index 7bebf3921b..bf5d39db6c 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -4824,6 +4824,28 @@ Atom.") the OCaml language.") (license license:gpl3+))) =20 +;; This is the last version that can be built with without ocaml-base, whi= ch +;; cannot be built with OCaml 4.02. +(define-public ocaml4.02-gsl + (package + (inherit (package-with-ocaml4.02 ocaml-gsl)) + (version "1.19.3") + (source (origin + (method url-fetch) + (uri (string-append "https://github.com/mmottl/gsl-ocaml" + "/releases/download/v" + version "/gsl-ocaml-" version ".tar.gz")= ) + (sha256 + (base32 + "0nzp43hp8pbjqkrxnwp5lgjrabxayf61h18fjaydi0s5faq6f3xh")))) + (build-system ocaml-build-system) + (inputs + `(("gsl" ,gsl))) + (arguments + `(#:ocaml ,ocaml-4.02 + #:findlib ,ocaml4.02-findlib)) + (propagated-inputs '()))) + (define-public cubicle (package (name "cubicle") --=20 2.20.1