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

22 lines
729 B
Nix
Raw Normal View History

{ cabal, Cabal, Glob, hinotify, hspec, QuickCheck, random
, systemFileio, systemFilepath, text, time, uniqueid
}:
2012-11-08 05:50:52 -08:00
cabal.mkDerivation (self: {
pname = "fsnotify";
version = "0.0.8";
sha256 = "05vfiddp5m28rm02ci7fcfg1zgw5ydj084173mpp1w124bfqf940";
2012-11-08 05:50:52 -08:00
buildDepends = [ hinotify systemFileio systemFilepath text time ];
testDepends = [
Cabal Glob hinotify hspec QuickCheck random systemFileio
systemFilepath text time uniqueid
];
2013-02-24 15:26:18 -08:00
doCheck = false;
2012-11-08 05:50:52 -08:00
meta = {
description = "Cross platform library for file creation, modification, and deletion notification";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
maintainers = [ self.stdenv.lib.maintainers.simons ];
2012-11-08 05:50:52 -08:00
};
})