about summary refs log tree commit diff
path: root/services/tazblog/tazblog.nix
diff options
context:
space:
mode:
authorVincent Ambo <tazjin@google.com>2019-08-25T22·21+0100
committerVincent Ambo <tazjin@google.com>2019-08-25T22·21+0100
commit593e96da6077b343b9716d490a17c7c3603cb2fc (patch)
treeae2746c686c204e55059c745199e0014f6c32b45 /services/tazblog/tazblog.nix
parent1247848d76712bad1e47b2b67969db3456f04e75 (diff)
chore(tazblog): Clean up unused dependencies r/65
Diffstat (limited to 'services/tazblog/tazblog.nix')
-rw-r--r--services/tazblog/tazblog.nix26
1 files changed, 17 insertions, 9 deletions
diff --git a/services/tazblog/tazblog.nix b/services/tazblog/tazblog.nix
index a29450ddc0ce..2ac1a51f2ab5 100644
--- a/services/tazblog/tazblog.nix
+++ b/services/tazblog/tazblog.nix
@@ -1,9 +1,6 @@
 { mkDerivation, aeson, acid-state, base, base64-bytestring, blaze-html
-, 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
-}:
+, bytestring, dns, happstack-server, markdown, network, network-uri, old-locale
+, options, rss, shakespeare, stdenv, text, time }:
 mkDerivation {
   pname = "tazblog";
   version = "6.0.0";
@@ -11,10 +8,21 @@ mkDerivation {
   isLibrary = true;
   isExecutable = true;
   libraryHaskellDepends = [
-    aeson base base64-bytestring blaze-html blaze-markup bytestring
-    cache crypto-api cryptohash dns hamlet happstack-server markdown mtl
-    network network-uri old-locale rss shakespeare text time
-    transformers
+    aeson
+    base
+    base64-bytestring
+    blaze-html
+    bytestring
+    dns
+    happstack-server
+    markdown
+    network
+    network-uri
+    old-locale
+    rss
+    shakespeare
+    text
+    time
   ];
   executableHaskellDepends = [ base network options ];
   description = "Tazjin's Blog";