-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdefault.nix
More file actions
25 lines (25 loc) · 977 Bytes
/
Copy pathdefault.nix
File metadata and controls
25 lines (25 loc) · 977 Bytes
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
{ mkDerivation, aeson, attoparsec, base, bifunctors, bytestring
, couchdb, data-default, directory, exceptions, filepath
, hjsonschema, hlint, http-client, http-types, integer-gmp, mtl
, random, stdenv, tasty, tasty-hunit, text, transformers
, unordered-containers, uuid, vector
}:
mkDerivation {
pname = "couch-simple";
version = "0.0.1.1";
src = ./.;
libraryHaskellDepends = [
aeson attoparsec base bifunctors bytestring data-default exceptions
http-client http-types integer-gmp mtl text transformers
unordered-containers uuid vector
];
testHaskellDepends = [
aeson base bytestring data-default directory exceptions filepath
hjsonschema hlint http-client http-types random tasty tasty-hunit
text transformers unordered-containers uuid
];
testToolDepends = [ couchdb ];
homepage = "https://github.com/mdorman/couch-simple";
description = "A modern, lightweight, complete client for CouchDB";
license = stdenv.lib.licenses.mit;
}