about summary refs log tree commit diff
path: root/services
diff options
context:
space:
mode:
authorVincent Ambo <tazjin@google.com>2019-12-09T02·54+0000
committerVincent Ambo <tazjin@google.com>2019-12-09T02·55+0000
commit46e5a23937c68d89d1d080ad6feef7587bcdbdc8 (patch)
tree03352d657ebf25fac56e1b3320a81e82a0de08ed /services
parent39ba7616634522a0495f42034240ff9d114b45a0 (diff)
fix: Amend import paths to use whitelisted nixpkgs r/103
Diffstat (limited to 'services')
-rw-r--r--services/tazblog/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/services/tazblog/default.nix b/services/tazblog/default.nix
index 41838e7605..eecadff6ba 100644
--- a/services/tazblog/default.nix
+++ b/services/tazblog/default.nix
@@ -5,7 +5,7 @@
 { pkgs, ... }:
 
 let
-  inherit (pkgs.third_party.nixpkgs) writeShellScriptBin haskell;
+  inherit (pkgs.third_party) writeShellScriptBin haskell;
   tazblog = haskell.packages.ghc865.callPackage ./tazblog.nix {};
   wrapper =  writeShellScriptBin "tazblog" ''
     export PORT=8000