summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/wreq/default.nix
blob: 9772418173bca11ffd58f4465aeb0f6a239137c8 (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
# This file was auto-generated by cabal2nix. Please do NOT edit manually!

{ cabal, aeson, attoparsec, doctest, exceptions, filepath
, httpClient, httpClientTls, httpTypes, HUnit, lens, mimeTypes
, temporary, testFramework, testFrameworkHunit, text, time
}:

cabal.mkDerivation (self: {
  pname = "wreq";
  version = "0.1.0.1";
  sha256 = "05w3b555arsab8a5w73nm9pk3p9r6jipi6cd3ngxv48gdn9wzhvz";
  isLibrary = true;
  isExecutable = true;
  buildDepends = [
    aeson attoparsec exceptions httpClient httpClientTls httpTypes lens
    mimeTypes text time
  ];
  testDepends = [
    aeson doctest filepath httpClient httpTypes HUnit lens temporary
    testFramework testFrameworkHunit text
  ];
  doCheck = false;
  meta = {
    homepage = "http://www.serpentine.com/wreq";
    description = "An easy-to-use HTTP client library";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
    maintainers = with self.stdenv.lib.maintainers; [ ocharles ];
  };
})