about summary refs log tree commit diff
path: root/services
diff options
context:
space:
mode:
Diffstat (limited to 'services')
-rw-r--r--services/tazblog/shell.nix11
1 files changed, 11 insertions, 0 deletions
diff --git a/services/tazblog/shell.nix b/services/tazblog/shell.nix
new file mode 100644
index 0000000000..196ffc983a
--- /dev/null
+++ b/services/tazblog/shell.nix
@@ -0,0 +1,11 @@
+{ pkgs ? import ../../default.nix {} }:
+
+let tazblog = import ./tazblog.nix;
+    depNames = with builtins; filter (
+      p: hasAttr p pkgs.haskellPackages
+    ) (attrNames (functionArgs tazblog));
+    ghc = pkgs.ghc.withPackages(p: map (x: p."${x}") depNames);
+in pkgs.stdenv.mkDerivation {
+  name = "shell";
+  buildInputs = [ ghc ];
+}