[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
155/329: gnu: ghc-megaparsec: Update to 7.0.5.
From: |
guix-commits |
Subject: |
155/329: gnu: ghc-megaparsec: Update to 7.0.5. |
Date: |
Wed, 20 Nov 2019 21:17:48 -0500 (EST) |
samplet pushed a commit to branch master
in repository guix.
commit 03b0c92e2a75c73204791fa28858e0de21856c14
Author: Timothy Sample <address@hidden>
Date: Thu Oct 31 12:59:06 2019 -0400
gnu: ghc-megaparsec: Update to 7.0.5.
* gnu/packages/haskell-xyz.scm (ghc-megaparsec): Update to 7.0.5.
[arguments]: Remove '#:cabal-revision'.
(ghc-megaparsec-7): Remove variable.
* gnu/packages/haskell-apps.scm (kmonad)[inputs]: Replace
'ghc-megaparsec-7' with 'ghc-megaparsec'.
* gnu/packages/idris.scm (idris)[inputs]: Likewise.
---
gnu/packages/haskell-apps.scm | 2 +-
gnu/packages/haskell-xyz.scm | 25 ++-----------------------
gnu/packages/idris.scm | 2 +-
3 files changed, 4 insertions(+), 25 deletions(-)
diff --git a/gnu/packages/haskell-apps.scm b/gnu/packages/haskell-apps.scm
index eac07ca..1e0dafe 100644
--- a/gnu/packages/haskell-apps.scm
+++ b/gnu/packages/haskell-apps.scm
@@ -543,7 +543,7 @@ and mIRC chat codes.")
("ghc-exceptions" ,ghc-exceptions)
("ghc-hashable" ,ghc-hashable)
("ghc-lens" ,ghc-lens)
- ("ghc-megaparsec" ,ghc-megaparsec-7)
+ ("ghc-megaparsec" ,ghc-megaparsec)
("ghc-optparse-applicative" ,ghc-optparse-applicative)
("ghc-unagi-chan" ,ghc-unagi-chan)
("ghc-unliftio" ,ghc-unliftio)
diff --git a/gnu/packages/haskell-xyz.scm b/gnu/packages/haskell-xyz.scm
index 9ebde51..cfc5f05 100644
--- a/gnu/packages/haskell-xyz.scm
+++ b/gnu/packages/haskell-xyz.scm
@@ -6120,7 +6120,7 @@ functions are often useful in statistical and numerical
computing.")
(define-public ghc-megaparsec
(package
(name "ghc-megaparsec")
- (version "6.5.0")
+ (version "7.0.5")
(source
(origin
(method url-fetch)
@@ -6129,11 +6129,8 @@ functions are often useful in statistical and numerical
computing.")
version ".tar.gz"))
(sha256
(base32
- "12iggy7qpf8x93jm64zf0g215xwy779bqyfyjk2bhmxqqr1yzgdy"))))
+ "0bqx1icbmk8s7wmbcdzsgnlh607c7kzg8l80cp02dxr5valjxp7j"))))
(build-system haskell-build-system)
- (arguments
- `(#:cabal-revision
- ("4" "0ij3asi5vwlhbgwsy6nhli9a0qb7926mg809fsgyl1rnhs9fvpx1")))
(inputs
`(("ghc-case-insensitive" ,ghc-case-insensitive)
("ghc-parser-combinators" ,ghc-parser-combinators)
@@ -6151,24 +6148,6 @@ Megaparsec is a feature-rich package that strikes a nice
balance between
speed, flexibility, and quality of parse errors.")
(license license:bsd-2)))
-;;; Idris 1.3.2 requires 'megaparse>=7.0.4' but we'd like to keep the public
-;;; package at the current Stackage LTS version:
-(define-public ghc-megaparsec-7
- (hidden-package
- (package
- (inherit ghc-megaparsec)
- (version "7.0.5")
- (source
- (origin
- (method url-fetch)
- (uri (string-append "https://hackage.haskell.org/package/megaparsec/"
- "megaparsec-" version ".tar.gz"))
- (sha256
- (base32
- "0bqx1icbmk8s7wmbcdzsgnlh607c7kzg8l80cp02dxr5valjxp7j"))))
- (arguments (strip-keyword-arguments (list #:cabal-revision)
- (package-arguments
ghc-megaparsec))))))
-
(define-public ghc-memory
(package
(name "ghc-memory")
diff --git a/gnu/packages/idris.scm b/gnu/packages/idris.scm
index cd68283..e5c0ac2 100644
--- a/gnu/packages/idris.scm
+++ b/gnu/packages/idris.scm
@@ -70,7 +70,7 @@
("ghc-fsnotify" ,ghc-fsnotify)
("ghc-ieee754" ,ghc-ieee754)
("ghc-libffi" ,ghc-libffi)
- ("ghc-megaparsec" ,ghc-megaparsec-7)
+ ("ghc-megaparsec" ,ghc-megaparsec)
("ghc-network" ,ghc-network)
("ghc-optparse-applicative" ,ghc-optparse-applicative)
("ghc-regex-tdfa" ,ghc-regex-tdfa)
- 225/329: gnu: ghc-wai-extra: Update to 3.0.28., (continued)
- 225/329: gnu: ghc-wai-extra: Update to 3.0.28., guix-commits, 2019/11/20
- 167/329: gnu: ghc-attoparsec-iso8601: Update to 1.0.1.0., guix-commits, 2019/11/20
- 191/329: gnu: ghc-pandoc-types: Update to 1.17.6.1., guix-commits, 2019/11/20
- 196/329: gnu: ghc-skylighting: Update to 0.8.2.1., guix-commits, 2019/11/20
- 204/329: gnu: ghc-cheapskate: Update to 0.1.1.1., guix-commits, 2019/11/20
- 208/329: gnu: Add ghc-tasty-hedgehog., guix-commits, 2019/11/20
- 210/329: gnu: Add ghc-retry., guix-commits, 2019/11/20
- 136/329: gnu: ghc-wave: Update to 0.2.0., guix-commits, 2019/11/20
- 135/329: gnu: ghc-gnuplot: Update to 0.5.6., guix-commits, 2019/11/20
- 145/329: gnu: ghc-chell: Update to 0.5., guix-commits, 2019/11/20
- 155/329: gnu: ghc-megaparsec: Update to 7.0.5.,
guix-commits <=
- 156/329: gnu: ghc-socks: Update to 0.6.1., guix-commits, 2019/11/20
- 164/329: gnu: ghc-aeson: Update to 1.4.5.0., guix-commits, 2019/11/20
- 172/329: gnu: ghc-hxt: Update to 9.3.1.18., guix-commits, 2019/11/20
- 175/329: gnu: ghc-libmpd: Update to 0.9.0.10., guix-commits, 2019/11/20
- 170/329: gnu: ghc-stringsearch: Update Cabal file to r1., guix-commits, 2019/11/20
- 173/329: gnu: ghc-hslua: Update to 1.0.3.2., guix-commits, 2019/11/20
- 174/329: gnu: ghc-io-streams: Update to 1.5.1.0., guix-commits, 2019/11/20
- 183/329: gnu: ghc-http-client: Update to 0.6.4., guix-commits, 2019/11/20
- 171/329: gnu: ghc-cgi: Update to 3001.4.0.0., guix-commits, 2019/11/20
- 184/329: gnu: ghc-profunctors: Update to 5.3., guix-commits, 2019/11/20