From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:44244) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hFloF-0008GG-69 for guix-patches@gnu.org; Sun, 14 Apr 2019 16:33:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hFloE-0005jB-5L for guix-patches@gnu.org; Sun, 14 Apr 2019 16:33:03 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:47929) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hFloD-0005ig-WC for guix-patches@gnu.org; Sun, 14 Apr 2019 16:33:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1hFloD-0004Sg-Mv for guix-patches@gnu.org; Sun, 14 Apr 2019 16:33:01 -0400 Subject: [bug#35280] [PATCH 1/5] gnu: Add ocaml-bigarray-compat. Resent-Message-ID: From: Julien Lepiller Date: Sun, 14 Apr 2019 22:32:01 +0200 Message-Id: <20190414203205.8104-1-julien@lepiller.eu> In-Reply-To: <20190414222536.704eea02@sybil.lepiller.eu> References: <20190414222536.704eea02@sybil.lepiller.eu> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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: 35280@debbugs.gnu.org * gnu/packages/ocaml.scm (ocaml-bigarray-compat): 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 0190c3937a..92489ba52d 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -859,6 +859,28 @@ Knuth’s LR(1) parser construction technique.") (inputs `(("ocaml" ,ocaml-4.02))) (native-inputs '()))) +(define-public ocaml-bigarray-compat + (package + (name "ocaml-bigarray-compat") + (version "1.0.0") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mirage/bigarray-compat") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "06j1dwlpisxshdd0nab4n4x266gg1s1n8na16lpgw3fvcznwnimz")))) + (build-system dune-build-system) + (arguments + `(#:tests? #f)); no tests + (home-page "https://github.com/mirage/bigarray-compat") + (synopsis "OCaml compatibility library") + (description "This package contains a compatibility library for +@code{Stdlib.Bigarray} in OCaml.") + (license license:isc))) + (define-public lablgtk (package (name "lablgtk") -- 2.21.0