ede08a7c4a
This down-grade is necessary to make fsnotify happy, which in turn is required by Yesod: <https://github.com/mdittmer/hfsnotify/issues/24>.
13 lines
366 B
Nix
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;
|
|
};
|
|
})
|