about summary refs log tree commit diff
diff options
context:
space:
mode:
authorVincent Ambo <tazjin@google.com>2019-08-21T10·07+0100
committerVincent Ambo <tazjin@google.com>2019-08-21T10·07+0100
commitbf2efeba2d5772ba1853ec5875c3c2faf02f1b07 (patch)
tree210fd1442569ea0c25c75dd4d4a75a9e45302926
parent13b0204c0391697b41cdfb80e96da6945808e25d (diff)
chore(tazblog): Introduce dependency on 'dns' r/47
-rw-r--r--services/tazblog/tazblog.cabal1
-rw-r--r--services/tazblog/tazblog.nix4
2 files changed, 3 insertions, 2 deletions
diff --git a/services/tazblog/tazblog.cabal b/services/tazblog/tazblog.cabal
index 3a946e01ba..0db2f990c7 100644
--- a/services/tazblog/tazblog.cabal
+++ b/services/tazblog/tazblog.cabal
@@ -20,6 +20,7 @@ library
                  blaze-html,
                  blaze-markup,
                  cache,
+                 dns,
                  crypto-api,
                  cryptohash,
                  old-locale,
diff --git a/services/tazblog/tazblog.nix b/services/tazblog/tazblog.nix
index 9708346590..0c2618bc01 100644
--- a/services/tazblog/tazblog.nix
+++ b/services/tazblog/tazblog.nix
@@ -1,5 +1,5 @@
 { mkDerivation, acid-state, base, base64-bytestring, blaze-html
-, blaze-markup, bytestring, cache, crypto-api, cryptohash, hamlet
+, blaze-markup, bytestring, cache, crypto-api, cryptohash, dns, hamlet
 , happstack-server, markdown, mtl, network, network-uri
 , old-locale, options, rss, shakespeare, stdenv, text
 , time, transformers
@@ -12,7 +12,7 @@ mkDerivation {
   isExecutable = true;
   libraryHaskellDepends = [
     base base64-bytestring blaze-html blaze-markup bytestring
-    cache crypto-api cryptohash hamlet happstack-server markdown mtl
+    cache crypto-api cryptohash dns hamlet happstack-server markdown mtl
     network network-uri old-locale rss shakespeare text time
     transformers
   ];