3
0
Fork 0
forked from mirrors/nixpkgs

haskell-twitter-conduit: update to version 0.0.4

This commit is contained in:
Peter Simons 2014-06-20 15:06:09 +02:00
parent d78aa3621b
commit 8a0186e65b

View file

@ -1,23 +1,28 @@
{ cabal, aeson, attoparsec, attoparsecConduit, authenticateOauth
, conduit, dataDefault, doctest, failure, filepath, hlint
, httpClient, httpConduit, httpTypes, lens, liftedBase
, monadControl, monadLogger, resourcet, shakespeare, text, time
{ cabal, aeson, attoparsec, authenticateOauth, caseInsensitive
, conduit, conduitExtra, dataDefault, doctest, filepath, hlint
, hspec, httpClient, httpConduit, httpTypes, lens, monadControl
, monadLogger, network, resourcet, shakespeare, text, time
, transformers, transformersBase, twitterTypes
}:
cabal.mkDerivation (self: {
pname = "twitter-conduit";
version = "0.0.3";
sha256 = "0snhy5xbdr4iy3mmm04i7sqz6fycw8hd50vndf527fncm9vr65wb";
version = "0.0.4";
sha256 = "0fv2m3sy1gklch4v3sarvq4xk9p7pdz1s3ssl52riy3mg076ab09";
isLibrary = true;
isExecutable = true;
buildDepends = [
aeson attoparsec attoparsecConduit authenticateOauth conduit
dataDefault failure httpClient httpConduit httpTypes lens
liftedBase monadControl monadLogger resourcet shakespeare text time
transformers transformersBase twitterTypes
aeson attoparsec authenticateOauth conduit conduitExtra dataDefault
httpClient httpConduit httpTypes lens monadLogger resourcet
shakespeare text time transformers twitterTypes
];
testDepends = [
aeson attoparsec authenticateOauth caseInsensitive conduit
conduitExtra dataDefault doctest filepath hlint hspec httpClient
httpConduit httpTypes lens monadControl monadLogger network
resourcet shakespeare text time transformers transformersBase
twitterTypes
];
testDepends = [ doctest filepath hlint ];
meta = {
homepage = "https://github.com/himura/twitter-conduit";
description = "Twitter API package with conduit interface and Streaming API support";