about summary refs log tree commit diff
diff options
context:
space:
mode:
authorVincent Ambo <tazjin@google.com>2019-09-22T16·05+0100
committerVincent Ambo <tazjin@google.com>2019-09-22T16·05+0100
commit5b446efb6661f8bfe48136576da25457ea625522 (patch)
tree56976f34a780fe6798ceeb10f3fd109ac5e42223
parent2fceba161866eb0caa26f1625c554c3dc78ad2ea (diff)
chore(tazblog): Remove more unneeded dependencies r/87
-rw-r--r--services/tazblog/tazblog.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/services/tazblog/tazblog.nix b/services/tazblog/tazblog.nix
index 2ac1a51f2a..b59cddec07 100644
--- a/services/tazblog/tazblog.nix
+++ b/services/tazblog/tazblog.nix
@@ -1,6 +1,6 @@
-{ mkDerivation, aeson, acid-state, base, base64-bytestring, blaze-html
-, bytestring, dns, happstack-server, markdown, network, network-uri, old-locale
-, options, rss, shakespeare, stdenv, text, time }:
+{ mkDerivation, aeson, base, base64-bytestring, blaze-html , bytestring, dns
+, happstack-server, markdown, network, network-uri, old-locale, rss
+, shakespeare, stdenv, text, time }:
 mkDerivation {
   pname = "tazblog";
   version = "6.0.0";
@@ -24,7 +24,7 @@ mkDerivation {
     text
     time
   ];
-  executableHaskellDepends = [ base network options ];
+  executableHaskellDepends = [ base network ];
   description = "Tazjin's Blog";
   license = stdenv.lib.licenses.mit;
 }