diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-06-06 18:40:56 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-06-07 18:36:02 +0200 |
commit | b92660afa4df47c2ce5d15a342fcb0110ccdbb48 (patch) | |
tree | 404ddb2c3aab6e31d765e36aa5affed6d6c1c9d1 /gnu | |
parent | a0f352b30f4869a7af7017b8a5011ac7602dd115 (diff) | |
download | guix-b92660afa4df47c2ce5d15a342fcb0110ccdbb48.tar guix-b92660afa4df47c2ce5d15a342fcb0110ccdbb48.tar.gz |
gnu: coq: Update to 8.9.1.
* gnu/packages/coq.scm (coq): Update to 8.9.1.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/coq.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/packages/coq.scm b/gnu/packages/coq.scm index 2b24b75808..fd69c44c22 100644 --- a/gnu/packages/coq.scm +++ b/gnu/packages/coq.scm @@ -1,6 +1,6 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2018 Julien Lepiller <julien@lepiller.eu> -;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr> +;;; Copyright © 2018, 2019 Tobias Geerinckx-Rice <me@tobias.gr> ;;; Copyright © 2019 Dan Frumin <dfrumin@cs.ru.nl> ;;; ;;; This file is part of GNU Guix. @@ -43,7 +43,7 @@ (define-public coq (package (name "coq") - (version "8.9.0") + (version "8.9.1") (source (origin (method git-fetch) @@ -52,7 +52,7 @@ (commit (string-append "V" version)))) (file-name (git-file-name name version)) (sha256 - (base32 "01ad7az6f95w16xya7979lk32agy22lf4bqgqf5qpnarpkpxhbw8")))) + (base32 "1p4z967s18wkblayv12ygqsrqlyk5ax1pz40yf4kag8pva6gblhk")))) (native-search-paths (list (search-path-specification (variable "COQPATH") |