2013-02-24 22:09:07 +01:00
|
|
|
{ cabal, Cabal, Glob, hinotify, hspec, QuickCheck, random
|
|
|
|
, systemFileio, systemFilepath, text, time, uniqueid
|
|
|
|
}:
|
2012-11-08 14:50:52 +01:00
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "fsnotify";
|
2013-04-24 11:18:25 +02:00
|
|
|
version = "0.0.11";
|
|
|
|
sha256 = "03m911pncyzgfdx4aj38azbbmj25fdm3s9l1w27zv0l730fy8ywq";
|
2012-11-08 14:50:52 +01:00
|
|
|
buildDepends = [ hinotify systemFileio systemFilepath text time ];
|
2013-02-24 22:09:07 +01:00
|
|
|
testDepends = [
|
|
|
|
Cabal Glob hinotify hspec QuickCheck random systemFileio
|
|
|
|
systemFilepath text time uniqueid
|
|
|
|
];
|
2013-02-25 00:26:18 +01:00
|
|
|
doCheck = false;
|
2012-11-08 14:50:52 +01:00
|
|
|
meta = {
|
2013-04-24 11:18:25 +02:00
|
|
|
description = "Cross platform library for file change notification";
|
2012-11-08 14:50:52 +01:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
|
|
|
};
|
|
|
|
})
|