24 lines
908 B
Nix
24 lines
908 B
Nix
{ mkDerivation, aeson, attoparsec, base, bytestring, deepseq
|
|
, either, exceptions, hspec, http-client, http-client-tls
|
|
, http-media, http-types, HUnit, network, network-uri, QuickCheck
|
|
, safe, servant, servant-server, stdenv, string-conversions, text
|
|
, transformers, wai, warp
|
|
}:
|
|
mkDerivation {
|
|
pname = "servant-client";
|
|
version = "0.4.0";
|
|
src = ./.;
|
|
buildDepends = [
|
|
aeson attoparsec base bytestring either exceptions http-client
|
|
http-client-tls http-media http-types network-uri safe servant
|
|
string-conversions text transformers
|
|
];
|
|
testDepends = [
|
|
aeson base bytestring deepseq either hspec http-client http-media
|
|
http-types HUnit network QuickCheck servant servant-server text wai
|
|
warp
|
|
];
|
|
homepage = "http://haskell-servant.github.io/";
|
|
description = "automatical derivation of querying functions for servant webservices";
|
|
license = stdenv.lib.licenses.bsd3;
|
|
}
|