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.4";
sha256 = "05iqy4llf42k20a4hdc7p3hx30v030ljwi469ps8xxx36c9c5kmf";
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
};
})