nixpkgs/pkgs/development/libraries/haskell/slack-api/default.nix

20 lines
605 B
Nix
Raw Normal View History

2015-01-07 13:01:38 +00:00
{ cabal, aeson, errors, HsOpenSSL, ioStreams, lens, lensAeson
, monadLoops, mtl, network, opensslStreams, text, time
, transformers, websockets, wreq
}:
cabal.mkDerivation (self: {
pname = "slack-api";
version = "0.2.1";
sha256 = "1k6p60gb13g09y6isr1r90zw548vs4y1fz34amfhdx79g9zm30hy";
2015-01-07 13:01:38 +00:00
buildDepends = [
aeson errors HsOpenSSL ioStreams lens lensAeson monadLoops mtl
network opensslStreams text time transformers websockets wreq
];
meta = {
description = "Bindings to the Slack RTM API";
license = self.stdenv.lib.licenses.mit;
platforms = self.ghc.meta.platforms;
};
})