unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#39034] [PATCH] gnu: ghc-persistent-template: Update to 2.8.0.
@ 2020-01-08  9:56 Alexandru-Sergiu Marton
  2020-03-29 19:20 ` bug#39034: " Marius Bakke
  0 siblings, 1 reply; 3+ messages in thread
From: Alexandru-Sergiu Marton @ 2020-01-08  9:56 UTC (permalink / raw)
  To: 39034; +Cc: Alexandru-Sergiu Marton

* gnu/packages/haskell-xyz.scm (ghc-persistent-template): Update to 2.8.0.
---
 gnu/packages/haskell-xyz.scm | 34 ++++++++++++++++++----------------
 1 file changed, 18 insertions(+), 16 deletions(-)

diff --git a/gnu/packages/haskell-xyz.scm b/gnu/packages/haskell-xyz.scm
index 709e5ae7a7..0b2339315e 100644
--- a/gnu/packages/haskell-xyz.scm
+++ b/gnu/packages/haskell-xyz.scm
@@ -8655,28 +8655,30 @@ system dependencies.")
 (define-public ghc-persistent-template
   (package
     (name "ghc-persistent-template")
-    (version "2.6.0")
+    (version "2.8.0")
     (source
      (origin
        (method url-fetch)
-       (uri (string-append "https://hackage.haskell.org/package/"
-                           "persistent-template-" version "/"
-                           "persistent-template-" version ".tar.gz"))
+       (uri (string-append
+             "https://hackage.haskell.org/package/persistent-template/"
+             "persistent-template-" version ".tar.gz"))
        (sha256
         (base32
-         "0wr1z2nfrl6jv1lprxb0d2jw4izqfcbcwvkdrhryzg95gjz8ryjv"))))
+         "16yjrl0gh4jbs4skr7iv6a55lny59bqhd6hjmvch1cl9j5d0c0g3"))))
     (build-system haskell-build-system)
-    (inputs `(("ghc-persistent" ,ghc-persistent)
-              ("ghc-monad-control" ,ghc-monad-control)
-              ("ghc-aeson" ,ghc-aeson)
-              ("ghc-aeson-compat" ,ghc-aeson-compat)
-              ("ghc-monad-logger" ,ghc-monad-logger)
-              ("ghc-unordered-containers" ,ghc-unordered-containers)
-              ("ghc-tagged" ,ghc-tagged)
-              ("ghc-path-pieces" ,ghc-path-pieces)
-              ("ghc-http-api-data" ,ghc-http-api-data)))
-    (native-inputs `(("ghc-hspec" ,ghc-hspec)
-                     ("ghc-quickcheck" ,ghc-quickcheck)))
+    (inputs
+     `(("ghc-persistent" ,ghc-persistent)
+       ("ghc-aeson" ,ghc-aeson)
+       ("ghc-http-api-data" ,ghc-http-api-data)
+       ("ghc-monad-control" ,ghc-monad-control)
+       ("ghc-monad-logger" ,ghc-monad-logger)
+       ("ghc-path-pieces" ,ghc-path-pieces)
+       ("ghc-th-lift-instances" ,ghc-th-lift-instances)
+       ("ghc-unordered-containers"
+        ,ghc-unordered-containers)))
+    (native-inputs
+     `(("ghc-hspec" ,ghc-hspec)
+       ("ghc-quickcheck" ,ghc-quickcheck)))
     (home-page "https://www.yesodweb.com/book/persistent")
     (synopsis "Type-safe, non-relational, multi-backend persistence")
     (description "This Haskell package provides interfaces and helper
-- 
2.24.1

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* bug#39034: [PATCH] gnu: ghc-persistent-template: Update to 2.8.0.
  2020-01-08  9:56 [bug#39034] [PATCH] gnu: ghc-persistent-template: Update to 2.8.0 Alexandru-Sergiu Marton
@ 2020-03-29 19:20 ` Marius Bakke
  2020-03-29 19:50   ` [bug#39034] " Marius Bakke
  0 siblings, 1 reply; 3+ messages in thread
From: Marius Bakke @ 2020-03-29 19:20 UTC (permalink / raw)
  To: Alexandru-Sergiu Marton, 39034-done; +Cc: Alexandru-Sergiu Marton

[-- Attachment #1: Type: text/plain, Size: 152 bytes --]

Alexandru-Sergiu Marton <brown121407@gmail.com> writes:

> * gnu/packages/haskell-xyz.scm (ghc-persistent-template): Update to 2.8.0.

Applied, thanks!

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 487 bytes --]

^ permalink raw reply	[flat|nested] 3+ messages in thread

* [bug#39034] [PATCH] gnu: ghc-persistent-template: Update to 2.8.0.
  2020-03-29 19:20 ` bug#39034: " Marius Bakke
@ 2020-03-29 19:50   ` Marius Bakke
  0 siblings, 0 replies; 3+ messages in thread
From: Marius Bakke @ 2020-03-29 19:50 UTC (permalink / raw)
  To: Alexandru-Sergiu Marton, 39034-done; +Cc: Alexandru-Sergiu Marton

[-- Attachment #1: Type: text/plain, Size: 565 bytes --]

Marius Bakke <mbakke@fastmail.com> writes:

> Alexandru-Sergiu Marton <brown121407@gmail.com> writes:
>
>> * gnu/packages/haskell-xyz.scm (ghc-persistent-template): Update to 2.8.0.
>
> Applied, thanks!

Actually, this change caused a build failure in 'ghc-yesod-persistent'
due to version constraints.  I managed to fix it by simply updating the
package.

In the future, when bumping library packages like these, it's good if
you run 'guix refresh -l <package>' and check that some of the dependent
packages still work.

Sorry for the extra packaging burden!  :-)

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 487 bytes --]

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2020-03-29 19:51 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-01-08  9:56 [bug#39034] [PATCH] gnu: ghc-persistent-template: Update to 2.8.0 Alexandru-Sergiu Marton
2020-03-29 19:20 ` bug#39034: " Marius Bakke
2020-03-29 19:50   ` [bug#39034] " Marius Bakke

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).