diff options
Diffstat (limited to 'services')
-rw-r--r-- | services/tazblog/shell.nix | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/services/tazblog/shell.nix b/services/tazblog/shell.nix new file mode 100644 index 000000000000..196ffc983a34 --- /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 ]; +} |