nixpkgs/pkgs/development/libraries/haskell/hinotify/default.nix
Peter Simons ede08a7c4a 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>.
2012-11-08 14:56:39 +01:00

13 lines
366 B
Nix

{ cabal }:
cabal.mkDerivation (self: {
pname = "hinotify";
version = "0.3.2";
sha256 = "0gr9rv1af6w7g2hbjhz1livi5zfhzdswjyapvjz3d7cga906bj48";
meta = {
homepage = "http://code.haskell.org/hinotify/README.html";
description = "Haskell binding to INotify";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})