unofficial mirror of bug-guix@gnu.org 
 help / color / mirror / code / Atom feed
blob e2a0d3196a314afd816656e2b8b033cc60fe8e5c 3259 bytes (raw)
name: gnu/packages/lean.scm 	 # note: path name is non-authoritative(*)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
 
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2019 Amin Bandali <bandali@gnu.org>
;;; Copyright © 2020 Brett Gilio <brettg@gnu.org>
;;; Copyright © 2020 Tobias Geerinckx-Rice <me@tobias.gr>
;;;
;;; This file is part of GNU Guix.
;;;
;;; GNU Guix is free software; you can redistribute it and/or modify it
;;; under the terms of the GNU General Public License as published by
;;; the Free Software Foundation; either version 3 of the License, or (at
;;; your option) any later version.
;;;
;;; GNU Guix is distributed in the hope that it will be useful, but
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
;;; GNU General Public License for more details.
;;;
;;; You should have received a copy of the GNU General Public License
;;; along with GNU Guix.  If not, see <http://www.gnu.org/licenses/>.

(define-module (gnu packages lean)
  #:use-module (gnu packages bash)
  #:use-module (gnu packages multiprecision)
  #:use-module (guix build-system cmake)
  #:use-module ((guix licenses) #:prefix license:)
  #:use-module (guix packages)
  #:use-module (guix git-download))

(define-public lean
  (package
    (name "lean")
    (version "3.23.0")
    (home-page "https://github.com/leanprover-community/lean")
    (source (origin
              (method git-fetch)
              (uri (git-reference (url home-page)
                                  (commit (string-append "v" version))))
              (file-name (git-file-name name version))
              (sha256
               (base32
                "09mklc1p6ms1jayg2f89hqfmhca3h5744lli936l38ypn1d00sxx"))))
    (build-system cmake-build-system)
    (inputs
     `(("bash-minimal" ,bash-minimal) ; for bin/leanpkg
       ("gmp" ,gmp)))
    (arguments
     `(#:build-type "Release"           ; default upstream build type
       ;; XXX: Test phases currently fail on 32-bit sytems.
       ;; Tests for those architectures have been temporarily
       ;; disabled, pending further investigation.
       #:tests? ,(and (not (%current-target-system))
                      (let ((arch (%current-system)))
                        (not (or (string-prefix? "i686" arch)
                                 (string-prefix? "armhf" arch)))))
       #:phases
       (modify-phases %standard-phases
         (add-after 'patch-source-shebangs 'patch-tests-shebangs
           (lambda _
             (let ((sh (which "sh"))
                   (bash (which "bash")))
               (substitute* (find-files "tests/lean" "\\.sh$")
                 (("#![[:blank:]]?/bin/sh")
                  (string-append "#!" sh))
                 (("#![[:blank:]]?/bin/bash")
                  (string-append "#!" bash))
                 (("#![[:blank:]]?usr/bin/env bash")
                  (string-append "#!" bash)))
               #t)))
         (add-before 'configure 'chdir-to-src
           (lambda _ (chdir "src") #t)))))
    (synopsis "Theorem prover and programming language")
    (description
     "Lean is a theorem prover and programming language with a small trusted
core based on dependent typed theory, aiming to bridge the gap between
interactive and automated theorem proving.")
    (license license:asl2.0)))

debug log:

solving e2a0d3196a ...
found e2a0d3196a in https://yhetil.org/guix-bugs/20210929224759.21803-3-maximedevos@telenet.be/ ||
	https://yhetil.org/guix-bugs/20210927154537.28227-3-maximedevos@telenet.be/
found 1099732181 in https://yhetil.org/guix-bugs/20210929224759.21803-2-maximedevos@telenet.be/ ||
	https://yhetil.org/guix-bugs/20210927154537.28227-2-maximedevos@telenet.be/
found cc593291fd in https://git.savannah.gnu.org/cgit/guix.git
preparing index
index prepared:
100644 cc593291fd412d627b9900161a7718df903866fd	gnu/packages/lean.scm

applying [1/2] https://yhetil.org/guix-bugs/20210929224759.21803-2-maximedevos@telenet.be/
diff --git a/gnu/packages/lean.scm b/gnu/packages/lean.scm
index cc593291fd..1099732181 100644

Checking patch gnu/packages/lean.scm...
Applied patch gnu/packages/lean.scm cleanly.

skipping https://yhetil.org/guix-bugs/20210927154537.28227-2-maximedevos@telenet.be/ for 1099732181
index at:
100644 1099732181f41e213e25846a278c56a46e73ddac	gnu/packages/lean.scm

applying [2/2] https://yhetil.org/guix-bugs/20210929224759.21803-3-maximedevos@telenet.be/
diff --git a/gnu/packages/lean.scm b/gnu/packages/lean.scm
index 1099732181..e2a0d3196a 100644

Checking patch gnu/packages/lean.scm...
Applied patch gnu/packages/lean.scm cleanly.

skipping https://yhetil.org/guix-bugs/20210927154537.28227-3-maximedevos@telenet.be/ for e2a0d3196a
index at:
100644 e2a0d3196a314afd816656e2b8b033cc60fe8e5c	gnu/packages/lean.scm

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).