3b2254a3af
There is no point in receiving hundreds of e-mails; I cannot read them anyway.
22 lines
642 B
Nix
22 lines
642 B
Nix
{ cabal, blazeBuilder, conduit, hspec, QuickCheck, systemFileio
|
|
, systemFilepath, text, transformers
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "filesystem-conduit";
|
|
version = "1.0.0";
|
|
sha256 = "1fz3iihcqpg6m3svjqdg8lvkpza955qn8cbs9b3w333vxkglhi6v";
|
|
buildDepends = [
|
|
conduit systemFileio systemFilepath text transformers
|
|
];
|
|
testDepends = [
|
|
blazeBuilder conduit hspec QuickCheck text transformers
|
|
];
|
|
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;
|
|
};
|
|
})
|