7165babaf1
This change brings support for building and running the regressions test suites.
19 lines
652 B
Nix
19 lines
652 B
Nix
{ cabal, Cabal, Glob, hinotify, hspec, QuickCheck, random
|
|
, systemFileio, systemFilepath, text, time, uniqueid
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "fsnotify";
|
|
version = "0.0.6";
|
|
sha256 = "0ib6ansj3vaq9hxxbsq5jw14w2b61wp4jfahzb3c3x46mdb1bqw5";
|
|
buildDepends = [ hinotify systemFileio systemFilepath text time ];
|
|
testDepends = [
|
|
Cabal Glob hinotify hspec QuickCheck random systemFileio
|
|
systemFilepath text time uniqueid
|
|
];
|
|
meta = {
|
|
description = "Cross platform library for file creation, modification, and deletion notification";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
};
|
|
})
|