-
Notifications
You must be signed in to change notification settings - Fork 0
/
cautious-sniffle.nix
34 lines (34 loc) · 1.53 KB
/
cautious-sniffle.nix
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
{ mkDerivation, base, base64-bytestring, bifunctors, bytestring
, clay, constraints-extras, containers, contravariant
, dependent-map, dependent-sum, dependent-sum-template, errors
, exceptions, generics-sop, hedgehog, http-client, lens, linear
, modern-uri, mtl, natural, process, scientific, scotty
, semigroupoids, servant, servant-client, servant-client-core
, servant-waargonaut, stdenv, tasty, tasty-hedgehog, tasty-hunit
, text, time, vector, waargonaut, warp
}:
mkDerivation {
pname = "cautious-sniffle";
version = "0.1.0.0";
src = ./.;
libraryHaskellDepends = [
base base64-bytestring bifunctors bytestring clay
constraints-extras containers contravariant dependent-map
dependent-sum dependent-sum-template errors generics-sop
http-client lens linear modern-uri mtl natural scientific
semigroupoids servant servant-client servant-client-core
servant-waargonaut text time vector waargonaut
];
testHaskellDepends = [
base base64-bytestring bifunctors bytestring clay
constraints-extras containers contravariant dependent-map
dependent-sum dependent-sum-template errors exceptions generics-sop
hedgehog http-client lens linear modern-uri mtl natural process
scientific scotty semigroupoids servant servant-client
servant-client-core servant-waargonaut tasty tasty-hedgehog
tasty-hunit text time vector waargonaut warp
];
homepage = "https://github.com/mankyKitty/cautious-sniffle";
description = "Servant client bindings for W3C Webdriver Protocol";
license = stdenv.lib.licenses.bsd3;
}