summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/http-streams/default.nix
blob: a2c2bc6f8c0b4c287972c17bf5d81c871e2772d3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{ cabal, aeson, aesonPretty, attoparsec, base64Bytestring
, blazeBuilder, caseInsensitive, HsOpenSSL, hspec
, hspecExpectations, httpCommon, HUnit, ioStreams
, MonadCatchIOTransformers, mtl, network, opensslStreams, snapCore
, snapServer, systemFileio, systemFilepath, text, transformers
, unorderedContainers
}:

cabal.mkDerivation (self: {
  pname = "http-streams";
  version = "0.7.1.1";
  sha256 = "0wh07gdb9w48mwsjvg07dq6gjvdm8ls654ki180r7p38v93rsmfx";
  buildDepends = [
    aeson attoparsec base64Bytestring blazeBuilder caseInsensitive
    HsOpenSSL httpCommon ioStreams mtl network opensslStreams text
    transformers unorderedContainers
  ];
  testDepends = [
    aeson aesonPretty attoparsec base64Bytestring blazeBuilder
    caseInsensitive HsOpenSSL hspec hspecExpectations httpCommon HUnit
    ioStreams MonadCatchIOTransformers mtl network opensslStreams
    snapCore snapServer systemFileio systemFilepath text transformers
    unorderedContainers
  ];
  doCheck = false;
  meta = {
    homepage = "http://research.operationaldynamics.com/projects/http-streams/";
    description = "An HTTP client using io-streams";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
  };
})