2013-02-24 21:09:07 +00:00
|
|
|
{ cabal, blazeBuilder, conduit, hspec, QuickCheck, systemFileio
|
|
|
|
, systemFilepath, text, transformers
|
2012-09-12 04:36:05 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "filesystem-conduit";
|
2013-02-20 10:58:02 +00:00
|
|
|
version = "1.0.0";
|
|
|
|
sha256 = "1fz3iihcqpg6m3svjqdg8lvkpza955qn8cbs9b3w333vxkglhi6v";
|
2012-09-12 04:36:05 +01:00
|
|
|
buildDepends = [
|
|
|
|
conduit systemFileio systemFilepath text transformers
|
|
|
|
];
|
2013-02-24 21:09:07 +00:00
|
|
|
testDepends = [
|
|
|
|
blazeBuilder conduit hspec QuickCheck text transformers
|
|
|
|
];
|
2012-09-12 04:36:05 +01:00
|
|
|
meta = {
|
|
|
|
homepage = "http://github.com/snoyberg/conduit";
|
|
|
|
description = "Use system-filepath data types with conduits";
|
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
|
|
|
};
|
|
|
|
})
|