summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/hinotify/default.nix
blob: de1c0e1275972803d57140edd2085b5076c5a4d1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ cabal }:

cabal.mkDerivation (self: {
  pname = "hinotify";
  version = "0.3.5";
  sha256 = "00pzvqw2w3gbz8j4hiz8zxm7rki07g1iamjlbazz3kmpwcgjxi0l";
  meta = {
    homepage = "https://github.com/kolmodin/hinotify.git";
    description = "Haskell binding to inotify";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
  };
})