summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergei Trofimovich <slyfox@gentoo.org>2016-05-10 23:01:56 +0100
committerSergei Trofimovich <slyfox@gentoo.org>2016-05-11 09:48:03 +0100
commit9af2c1faee50f20cf89a62ab03a8253d00f5ce14 (patch)
tree304977d4645c9ae985db38e8deb48ac6e7debfd9 /dev-haskell/filestore/files
parentdev-haskell/frown: bump up to 0.6.2.3 (diff)
downloadgentoo-9af2c1faee50f20cf89a62ab03a8253d00f5ce14.tar.gz
gentoo-9af2c1faee50f20cf89a62ab03a8253d00f5ce14.tar.bz2
gentoo-9af2c1faee50f20cf89a62ab03a8253d00f5ce14.zip
dev-haskell/filestore: allow ghc-8
Package-Manager: portage-2.2.28
Diffstat (limited to 'dev-haskell/filestore/files')
-rw-r--r--dev-haskell/filestore/files/filestore-0.6.1-ghc-8.patch14
1 files changed, 14 insertions, 0 deletions
diff --git a/dev-haskell/filestore/files/filestore-0.6.1-ghc-8.patch b/dev-haskell/filestore/files/filestore-0.6.1-ghc-8.patch
new file mode 100644
index 000000000000..126a0564b4db
--- /dev/null
+++ b/dev-haskell/filestore/files/filestore-0.6.1-ghc-8.patch
@@ -0,0 +1,14 @@
+diff --git a/Data/FileStore/Types.hs b/Data/FileStore/Types.hs
+index e950c7a..e116761 100644
+--- a/Data/FileStore/Types.hs
++++ b/Data/FileStore/Types.hs
+@@ -152,3 +152,3 @@ data FileStore = FileStore {
+ -- | Save contents in the filestore.
+- , save :: Contents a
++ , save :: forall a . Contents a
+ => FilePath -- Resource to save.
+@@ -160,3 +160,3 @@ data FileStore = FileStore {
+ -- | Retrieve the contents of the named resource.
+- , retrieve :: Contents a
++ , retrieve :: forall a . Contents a
+ => FilePath -- Resource to retrieve.