forked from adinapoli/mandrill
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdefault.nix
More file actions
24 lines (22 loc) · 702 Bytes
/
default.nix
File metadata and controls
24 lines (22 loc) · 702 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
# This file was auto-generated by cabal2nix. Please do NOT edit manually!
{ cabal, aeson, base64Bytestring, blazeHtml, emailValidate, lens
, mtl, QuickCheck, rawStringsQq, tasty, tastyHunit, tastyQuickcheck
, text, time, wreq
}:
cabal.mkDerivation (self: {
pname = "mandrill";
version = "0.1.0.3";
src = ./.;
buildDepends = [
aeson base64Bytestring blazeHtml emailValidate lens mtl QuickCheck
text time wreq
];
testDepends = [
aeson QuickCheck rawStringsQq tasty tastyHunit tastyQuickcheck text
];
meta = {
description = "Library for interfacing with the Mandrill JSON API";
license = self.stdenv.lib.licenses.mit;
platforms = self.ghc.meta.platforms;
};
})