diff options
author | Vincent Ambo <tazjin@google.com> | 2019-12-09T02·54+0000 |
---|---|---|
committer | Vincent Ambo <tazjin@google.com> | 2019-12-09T02·55+0000 |
commit | 46e5a23937c68d89d1d080ad6feef7587bcdbdc8 (patch) | |
tree | 03352d657ebf25fac56e1b3320a81e82a0de08ed /services | |
parent | 39ba7616634522a0495f42034240ff9d114b45a0 (diff) |
fix: Amend import paths to use whitelisted nixpkgs r/103
Diffstat (limited to 'services')
-rw-r--r-- | services/tazblog/default.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/services/tazblog/default.nix b/services/tazblog/default.nix index 41838e76055f..eecadff6ba17 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 |