1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-22 05:31:22 +00:00
nixpkgs/pkgs/development/libraries/haskell/twitter-conduit/default.nix
2014-06-20 16:55:59 +02:00

34 lines
1.3 KiB
Nix

{ 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.4";
sha256 = "0fv2m3sy1gklch4v3sarvq4xk9p7pdz1s3ssl52riy3mg076ab09";
isLibrary = true;
isExecutable = true;
buildDepends = [
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
];
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 ];
};
})