diff options
author | Jakub Kądziołka <[email protected]> | 2020-07-23 21:43:06 +0200 |
---|---|---|
committer | Jakub Kądziołka <[email protected]> | 2020-07-23 21:43:06 +0200 |
commit | d726b954baaeff876ce9728e00920fa45f529f9a (patch) | |
tree | 4b767b7586a1082dd2691bc33c3e45ace044e6e5 /gnu/packages/sml.scm | |
parent | 9a74a7db8626bc139307d115f5cec2648f5273ad (diff) | |
parent | e165a2492d73d37c8b95d6970d453b9d88911ee6 (diff) |
Merge branch 'master' into core-updates
Conflicts:
gnu/packages/ruby.scm
Diffstat (limited to 'gnu/packages/sml.scm')
-rw-r--r-- | gnu/packages/sml.scm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gnu/packages/sml.scm b/gnu/packages/sml.scm index d441dcf638..6db8028177 100644 --- a/gnu/packages/sml.scm +++ b/gnu/packages/sml.scm @@ -2,7 +2,7 @@ ;;; Copyright © 2017 Andy Patterson <[email protected]> ;;; Copyright © 2017 Tobias Geerinckx-Rice <[email protected]> ;;; Copyright © 2018 Ricardo Wurmus <[email protected]> -;;; Copyright © 2019 Brett Gilio <[email protected]> +;;; Copyright © 2019, 2020 Brett Gilio <[email protected]> ;;; ;;; This file is part of GNU Guix. ;;; @@ -33,16 +33,16 @@ (define-public polyml (package (name "polyml") - (version "5.8") + (version "5.8.1") (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/polyml/polyml.git") + (url "https://github.com/polyml/polyml") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 (base32 - "1jabrf9cnmsppawga6q5pjiq1cdayilxp66fkxykczs6vv2gz7f9")))) + "1ag7n55ym1zxksi89dvs17j6iaa58v4mg47s92zpa1b49k4fql1k")))) (build-system gnu-build-system) (inputs `(("gmp" ,gmp) |