mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-25 03:17:13 +00:00
25 lines
838 B
Nix
25 lines
838 B
Nix
{ cabal, basicPrelude, chunkedData, conduit, hspec, monoTraversable
|
|
, primitive, silently, systemFileio, systemFilepath, text
|
|
, transformers, transformersBase, vector
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "conduit-combinators";
|
|
version = "0.1.0.0";
|
|
sha256 = "0m4qfcm66likasvsvfriw8xiz5ibqhq5sk1wiwx0gk2d1qcnb3wx";
|
|
buildDepends = [
|
|
chunkedData conduit monoTraversable primitive systemFileio
|
|
systemFilepath text transformers transformersBase vector
|
|
];
|
|
testDepends = [
|
|
basicPrelude chunkedData hspec monoTraversable silently text
|
|
transformers vector
|
|
];
|
|
meta = {
|
|
homepage = "https://github.com/fpco/conduit-combinators";
|
|
description = "Commonly used conduit functions, for both chunked and unchunked data";
|
|
license = self.stdenv.lib.licenses.mit;
|
|
platforms = self.ghc.meta.platforms;
|
|
};
|
|
})
|