summaryrefslogtreecommitdiffstats
path: root/regfish.nix
diff options
context:
space:
mode:
authortv <tv@krebsco.de>2021-08-03 20:56:58 +0200
committertv <tv@krebsco.de>2021-08-03 20:59:58 +0200
commitc1253c39fa49b2f7eae54c0ed143213277d43681 (patch)
treeead0392c1a3b991902458d37b8c5f4d4c37f4bb7 /regfish.nix
parent71a3f4e8efa833cc1a8209ab336ac8c454cc2f9b (diff)
support decoding "[email protected]" in rrdata
Diffstat (limited to 'regfish.nix')
-rw-r--r--regfish.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/regfish.nix b/regfish.nix
index d0be0c9..14c7dc6 100644
--- a/regfish.nix
+++ b/regfish.nix
@@ -1,13 +1,14 @@
{ mkDerivation, acid-state, base, bytestring, data-default
-, HandsomeSoup, http-client, hxt, lens, lib, mtl, safecopy, wreq
+, HandsomeSoup, hex-text, http-client, hxt, lens, lib, mtl
+, safecopy, split, text, wreq
}:
mkDerivation {
pname = "regfish";
version = "2.0.0";
src = ./.;
libraryHaskellDepends = [
- acid-state base bytestring data-default HandsomeSoup http-client
- hxt lens mtl safecopy wreq
+ acid-state base bytestring data-default HandsomeSoup hex-text
+ http-client hxt lens mtl safecopy split text wreq
];
license = lib.licenses.mit;
}