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

15 lines
420 B
Nix
Raw Normal View History

2012-06-27 16:58:34 +00:00
{ cabal }:
cabal.mkDerivation (self: {
pname = "hinotify";
version = "0.3.3";
sha256 = "0z8pd5zva25zii5kkh807kdkn4j9w9z74f2dw4kyflwidn0063fr";
2012-06-27 16:58:34 +00:00
meta = {
homepage = "https://github.com/kolmodin/hinotify.git";
description = "Haskell binding to inotify";
2012-06-27 16:58:34 +00:00
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
maintainers = [ self.stdenv.lib.maintainers.andres ];
2012-06-27 16:58:34 +00:00
};
})