2014-04-03 14:25:37 +01:00
|
|
|
{ cabal, aeson, attoparsec, attoparsecConduit, authenticateOauth
|
|
|
|
, conduit, dataDefault, doctest, failure, filepath, hlint
|
2014-04-08 12:30:01 +01:00
|
|
|
, httpClient, httpConduit, httpTypes, lens, liftedBase
|
|
|
|
, monadControl, monadLogger, resourcet, shakespeare, text, time
|
2014-04-03 14:25:37 +01:00
|
|
|
, transformers, transformersBase, twitterTypes
|
|
|
|
}:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "twitter-conduit";
|
2014-06-16 15:11:31 +01:00
|
|
|
version = "0.0.3";
|
|
|
|
sha256 = "0snhy5xbdr4iy3mmm04i7sqz6fycw8hd50vndf527fncm9vr65wb";
|
2014-04-03 14:25:37 +01:00
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
|
|
|
buildDepends = [
|
|
|
|
aeson attoparsec attoparsecConduit authenticateOauth conduit
|
2014-04-08 12:30:01 +01:00
|
|
|
dataDefault failure httpClient httpConduit httpTypes lens
|
|
|
|
liftedBase monadControl monadLogger resourcet shakespeare text time
|
|
|
|
transformers transformersBase twitterTypes
|
2014-04-03 14:25:37 +01:00
|
|
|
];
|
|
|
|
testDepends = [ doctest filepath hlint ];
|
|
|
|
meta = {
|
|
|
|
homepage = "https://github.com/himura/twitter-conduit";
|
|
|
|
description = "Twitter API package with conduit interface and Streaming API support";
|
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
|
|
|
maintainers = [ self.stdenv.lib.maintainers.ocharles ];
|
|
|
|
};
|
|
|
|
})
|