about summary refs log tree commit diff
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2012-11-08 14:56:39 +0100
committerPeter Simons <simons@cryp.to>2012-11-08 14:56:39 +0100
commitede08a7c4abde936c3eaa19f2b95d243cdc0c0f4 (patch)
tree90968aafe4f736b3d0fe6bc15c6a911cff141e58
parent8f835604dc5f39bbd4877eaf8d9cb84ae1ad4807 (diff)
downloadnixlib-ede08a7c4abde936c3eaa19f2b95d243cdc0c0f4.tar
nixlib-ede08a7c4abde936c3eaa19f2b95d243cdc0c0f4.tar.gz
nixlib-ede08a7c4abde936c3eaa19f2b95d243cdc0c0f4.tar.bz2
nixlib-ede08a7c4abde936c3eaa19f2b95d243cdc0c0f4.tar.lz
nixlib-ede08a7c4abde936c3eaa19f2b95d243cdc0c0f4.tar.xz
nixlib-ede08a7c4abde936c3eaa19f2b95d243cdc0c0f4.tar.zst
nixlib-ede08a7c4abde936c3eaa19f2b95d243cdc0c0f4.zip
haskell-hinotify: downgrade to version 0.3.2
This down-grade is necessary to make fsnotify happy, which in turn is
required by Yesod: <https://github.com/mdittmer/hfsnotify/issues/24>.
-rw-r--r--pkgs/development/libraries/haskell/hinotify/default.nix9
1 files changed, 4 insertions, 5 deletions
diff --git a/pkgs/development/libraries/haskell/hinotify/default.nix b/pkgs/development/libraries/haskell/hinotify/default.nix
index 0d3392b4e59e..169cfca38dce 100644
--- a/pkgs/development/libraries/haskell/hinotify/default.nix
+++ b/pkgs/development/libraries/haskell/hinotify/default.nix
@@ -2,13 +2,12 @@
 
 cabal.mkDerivation (self: {
   pname = "hinotify";
-  version = "0.3.4";
-  sha256 = "05iqy4llf42k20a4hdc7p3hx30v030ljwi469ps8xxx36c9c5kmf";
+  version = "0.3.2";
+  sha256 = "0gr9rv1af6w7g2hbjhz1livi5zfhzdswjyapvjz3d7cga906bj48";
   meta = {
-    homepage = "https://github.com/kolmodin/hinotify.git";
-    description = "Haskell binding to inotify";
+    homepage = "http://code.haskell.org/hinotify/README.html";
+    description = "Haskell binding to INotify";
     license = self.stdenv.lib.licenses.bsd3;
     platforms = self.ghc.meta.platforms;
-    maintainers = [ self.stdenv.lib.maintainers.andres ];
   };
 })