guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

05/05: gnu: Add coq-stdpp.


From: guix-commits
Subject: 05/05: gnu: Add coq-stdpp.
Date: Fri, 24 May 2019 12:24:38 -0400 (EDT)

civodul pushed a commit to branch master
in repository guix.

commit 66fbffde1f8ad44318c75948575eab88a46e1328
Author: Dan Frumin <address@hidden>
Date:   Wed May 22 13:33:23 2019 +0200

    gnu: Add coq-stdpp.
    
    * gnu/packages/coq.scm (coq-stdpp): New variable.
    
    Signed-off-by: Ludovic Courtès <address@hidden>
---
 gnu/packages/coq.scm | 57 ++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 57 insertions(+)

diff --git a/gnu/packages/coq.scm b/gnu/packages/coq.scm
index 4f59262..6c48af4 100644
--- a/gnu/packages/coq.scm
+++ b/gnu/packages/coq.scm
@@ -25,6 +25,7 @@
   #:use-module (gnu packages boost)
   #:use-module (gnu packages emacs)
   #:use-module (gnu packages flex)
+  #:use-module (gnu packages gawk)
   #:use-module (gnu packages multiprecision)
   #:use-module (gnu packages ocaml)
   #:use-module (gnu packages perl)
@@ -535,3 +536,59 @@ compiles everything down to eliminators for inductive 
types, equality
 and accessibility, providing a definitional extension to the Coq
 kernel.")
     (license license:lgpl2.1)))
+
+(define-public coq-stdpp
+  (package
+    (name "coq-stdpp")
+    (version "1.2.0")
+    (synopsis "Alternative Coq standard library std++")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://gitlab.mpi-sws.org/iris/stdpp.git";)
+                    (commit (string-append "coq-stdpp-" version))))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32 
"11m7kqxsbxygk41v2wsi3npdzwin9fcnzc1gn0gq0rd57wnqk83i"))))
+    (build-system gnu-build-system)
+    (inputs
+     `(("coq" ,coq)))
+    (arguments
+     `(#:tests? #f ;; the tests are being run automaticlly as part of `make 
all`
+       #:phases
+       (modify-phases %standard-phases
+         (delete 'configure)
+         (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 "This project contains an extended \"Standard Library\" for
+Coq called coq-std++.  The key features are:
address@hidden
address@hidden Great number of definitions and lemmas for common data 
structures such
+as lists, finite maps, finite sets, and finite multisets.
+
address@hidden Type classes for common notations (like ∅, ∪, and Haskell-style 
monad
+notations) so that these can be overloaded for different data structures.
+
address@hidden It uses type classes to keep track of common properties of 
types, like
+it having decidable equality or being countable or finite.
+
address@hidden Most data structures are represented in canonical ways so that 
Leibniz
+equality can be used as much as possible (for example, for maps we have m1 =
+m2 iff ∀ i, m1 !! i = m2 !! i).  On top of that, the library provides setoid
+instances for most types and operations.
+
address@hidden Various tactics for common tasks, like an ssreflect inspired 
done tactic
+for finishing trivial goals, a simple breadth-first solver naive_solver, an
+equality simplifier simplify_eq, a solver solve_proper for proving
+compatibility of functions with respect to relations, and a solver set_solver
+for goals involving set operations.
+
address@hidden The library is dependency- and axiom-free.
address@hidden itemize")
+    (home-page "https://gitlab.mpi-sws.org/iris/stdpp";)
+    (license license:bsd-3)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]