From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:47238) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gts0N-0003Dy-Fv for guix-patches@gnu.org; Wed, 13 Feb 2019 05:43:04 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gts0M-0008HF-K5 for guix-patches@gnu.org; Wed, 13 Feb 2019 05:43:03 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:46494) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gts0M-0008H9-HC for guix-patches@gnu.org; Wed, 13 Feb 2019 05:43:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1gts0M-0007pY-3i for guix-patches@gnu.org; Wed, 13 Feb 2019 05:43:02 -0500 Subject: [bug#34466] [PATCH] gnu: Add coq-equations. Resent-Message-ID: Received: from eggs.gnu.org ([209.51.188.92]:46965) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gtrzJ-0002eM-I2 for guix-patches@gnu.org; Wed, 13 Feb 2019 05:42:03 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gtrzI-0007kj-MF for guix-patches@gnu.org; Wed, 13 Feb 2019 05:41:57 -0500 Received: from smtp2.science.ru.nl ([131.174.16.145]:56702) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1gtrzI-0007dg-Dx for guix-patches@gnu.org; Wed, 13 Feb 2019 05:41:56 -0500 From: Dan Frumin Date: Wed, 13 Feb 2019 11:40:24 +0100 Message-Id: <20190213104024.1963-1-dfrumin@cs.ru.nl> 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: 34466@debbugs.gnu.org Cc: Dan Frumin --- gnu/packages/coq.scm | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) diff --git a/gnu/packages/coq.scm b/gnu/packages/coq.scm index fa02f85cd..494c3404b 100644 --- a/gnu/packages/coq.scm +++ b/gnu/packages/coq.scm @@ -500,3 +500,43 @@ work on a decision procedure for the equational theory of an extension of the sigma-calculus by Abadi et al. The library is completely written in Coq and uses Ltac to synthesize the substitution operation.") (license license:bsd-3)))) + +(define-public coq-equations + (package + (name "coq-equations") + (synopsis "Equations - a function definition plugin") + (version "1.2-beta") + (source (origin + (method url-fetch) + (uri (string-append + "https://github.com/mattam82/Coq-Equations/archive/v" + version "-8.8.tar.gz")) + (file-name (string-append name "-v" version "8.8.tar.gz")) + (sha256 + (base32 "1j7yarhddk2c2l4b6h8g5n0xz5vfy1bqmgh832g01di5gjwshy3f")))) + (build-system gnu-build-system) + (native-inputs + `(("findlib" ,ocaml) + ("coq" ,coq) + ("camlp5" ,camlp5))) + (arguments + `(#:test-target "test-suite" + #:phases + (modify-phases %standard-phases + (replace 'configure + (lambda* (#:key outputs #:allow-other-keys) + (invoke "coq_makefile" "-f" "_CoqProject" "-o" "Makefile"))) + (replace 'install + (lambda* (#:key outputs #:allow-other-keys) + (setenv "COQLIB" (string-append (assoc-ref outputs "out") "/lib/coq/")) + (invoke "make" + (string-append "COQLIB=" (assoc-ref outputs "out") + "/lib/coq/") + "install")))))) + (description "Equations provides a notation for writing programs +by dependent pattern-matching and (well-founded) recursion in Coq. It +compiles everything down to eliminators for inductive types, equality +and accessibility, providing a definitional extension to the Coq +kernel.") + (home-page "https://mattam82.github.io/Coq-Equations/") + (license license:lgpl2.1))) -- 2.17.1