mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
haskell-conduit-extra: update to version 1.1.0
This commit is contained in:
parent
5a5fe665f8
commit
940ba2cf76
1 changed files with 16 additions and 4 deletions
|
@ -1,13 +1,25 @@
|
|||
{ cabal }:
|
||||
{ cabal, attoparsec, blazeBuilder, conduit, exceptions, filepath
|
||||
, hspec, monadControl, network, primitive, resourcet
|
||||
, streamingCommons, text, transformers, transformersBase
|
||||
}:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "conduit-extra";
|
||||
version = "1.0.0";
|
||||
sha256 = "120c3zay8svdw3b9nqgxlrj45a1d4xf0sijkg367m7hp22szvz8a";
|
||||
version = "1.1.0";
|
||||
sha256 = "08s8nafsdkd4dwmi2vsid82z8iv178vm9jbb322ygnbpf2a9y96y";
|
||||
buildDepends = [
|
||||
attoparsec blazeBuilder conduit filepath monadControl network
|
||||
primitive resourcet streamingCommons text transformers
|
||||
transformersBase
|
||||
];
|
||||
testDepends = [
|
||||
attoparsec blazeBuilder conduit exceptions hspec resourcet text
|
||||
transformers transformersBase
|
||||
];
|
||||
noHaddock = true;
|
||||
meta = {
|
||||
homepage = "http://github.com/snoyberg/conduit";
|
||||
description = "Temporary placeholder package";
|
||||
description = "Batteries included conduit: adapters for common libraries";
|
||||
license = self.stdenv.lib.licenses.mit;
|
||||
platforms = self.ghc.meta.platforms;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue