diff options
author | Ludovic Courtès <ludo@gnu.org> | 2022-06-08 14:46:24 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2022-06-08 14:46:24 +0200 |
commit | 8c3e9da13a3c92a7db308db8c0d81cb474ad7799 (patch) | |
tree | 88d06952aa5cc3a9c4991d9c43eb7950ff174fe1 /gnu/packages/haskell-apps.scm | |
parent | 5439c04ebdb7b6405f5ea2446b375f1d155a8d95 (diff) | |
parent | 0c5299200ffcd16370f047b7ccb187c60f30da34 (diff) |
Merge branch 'master' into core-updates
Diffstat (limited to 'gnu/packages/haskell-apps.scm')
-rw-r--r-- | gnu/packages/haskell-apps.scm | 20 |
1 files changed, 15 insertions, 5 deletions
diff --git a/gnu/packages/haskell-apps.scm b/gnu/packages/haskell-apps.scm index ecd1a93317..572e9a062f 100644 --- a/gnu/packages/haskell-apps.scm +++ b/gnu/packages/haskell-apps.scm @@ -11,7 +11,7 @@ ;;; Copyright © 2015 Paul van der Walt <paul@denknerd.org> ;;; Copyright © 2019, 2020 Kyle Meyer <kyle@kyleam.com> ;;; Copyright © 2015 John Soo <jsoo1@asu.edu> -;;; Copyright © 2019, 2020 Efraim Flashner <efraim@flashner.co.il> +;;; Copyright © 2019, 2020, 2022 Efraim Flashner <efraim@flashner.co.il> ;;; Copyright © 2019, 2020 Alex Griffin <a@ajgrf.com> ;;; Copyright © 2020 Alexandru-Sergiu Marton <brown121407@member.fsf.org> ;;; Copyright © 2020 Brian Leung <bkleung89@gmail.com> @@ -304,14 +304,14 @@ to @code{cabal repl}).") (define-public git-annex (package (name "git-annex") - (version "10.20220222") + (version "10.20220525") (source (origin (method url-fetch) (uri (string-append "https://hackage.haskell.org/package/" "git-annex/git-annex-" version ".tar.gz")) (sha256 - (base32 "119c7l2vqv19ja3pg3adaivsmrmbyg03a88j2msnzcgyhddggf8z")))) + (base32 "1nrwa4qm3xkr11x0b0c1mx052zhd7lz9w97xf0ycdkhsyc6vbiy6")))) (build-system haskell-build-system) (arguments `(#:configure-flags @@ -404,12 +404,16 @@ to @code{cabal repl}).") (inputs (list curl ghc-aeson + ghc-ansi-terminal ghc-async + ghc-attoparsec ghc-aws ghc-bloomfilter ghc-byteable ghc-case-insensitive ghc-concurrent-output + ghc-conduit + ghc-connection ghc-crypto-api ghc-cryptonite ghc-data-default @@ -417,25 +421,28 @@ to @code{cabal repl}).") ghc-disk-free-space ghc-dlist ghc-edit-distance - ghc-esqueleto ghc-exceptions ghc-feed ghc-filepath-bytestring ghc-free ghc-hinotify - ghc-hslogger ghc-http-client + ghc-http-client-tls + ghc-http-client-restricted ghc-http-conduit ghc-http-types ghc-ifelse ghc-magic ghc-memory + ghc-microlens ghc-monad-control ghc-monad-logger ghc-mountpoints ghc-network + ghc-network-bsd ghc-network-info ghc-network-multicast + ghc-network-uri ghc-old-locale ghc-optparse-applicative ghc-persistent @@ -453,10 +460,13 @@ to @code{cabal repl}).") ghc-stm-chans ghc-tagsoup ghc-torrent + ghc-transformers ghc-unix-compat + ghc-unliftio-core ghc-unordered-containers ghc-utf8-string ghc-uuid + ghc-vector git rsync)) (native-inputs |