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

{ cabal, aeson, aesonPretty, aesonQq, attoparsec, base16Bytestring
, base64Bytestring, byteable, caseInsensitive, cryptohash, doctest
, exceptions, filepath, hashable, httpClient, httpClientTls
, httpTypes, HUnit, lens, lensAeson, mimeTypes, networkInfo
, PSQueue, QuickCheck, snapCore, snapServer, temporary
, testFramework, testFrameworkHunit, testFrameworkQuickcheck2, text
, time, transformers, unixCompat, unorderedContainers, uuid
}:

cabal.mkDerivation (self: {
  pname = "wreq";
  version = "0.3.0.1";
  sha256 = "13apqr8sfx2vi794ldqprmgqch79sqli9scgyk3k41v7wcwqaal4";
  isLibrary = true;
  isExecutable = true;
  buildDepends = [
    aeson attoparsec base16Bytestring byteable caseInsensitive
    cryptohash exceptions hashable httpClient httpClientTls httpTypes
    lens lensAeson mimeTypes PSQueue text time unorderedContainers
  ];
  testDepends = [
    aeson aesonPretty aesonQq base64Bytestring caseInsensitive doctest
    filepath hashable httpClient httpTypes HUnit lens lensAeson
    networkInfo QuickCheck snapCore snapServer temporary testFramework
    testFrameworkHunit testFrameworkQuickcheck2 text transformers
    unixCompat uuid
  ];
  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 ];
  };
})