nixpkgs/pkgs/development/libraries/haskell/hinotify/default.nix

15 lines
424 B
Nix
Raw Normal View History

2012-06-27 18:58:34 +02:00
{ 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;
maintainers = [ self.stdenv.lib.maintainers.andres ];
2012-06-27 18:58:34 +02:00
};
})