about summary refs log tree commit diff
path: root/services
diff options
context:
space:
mode:
Diffstat (limited to 'services')
-rw-r--r--services/gemma/default.nix3
-rw-r--r--services/tazblog/default.nix2
-rw-r--r--services/tazblog/shell.nix2
3 files changed, 4 insertions, 3 deletions
diff --git a/services/gemma/default.nix b/services/gemma/default.nix
index ea10a4c7d02e..5b211422de92 100644
--- a/services/gemma/default.nix
+++ b/services/gemma/default.nix
@@ -1,7 +1,8 @@
 { pkgs, ... }:
 
 let
-  inherit (pkgs) stdenv sbcl lispPackages elmPackages makeWrapper openssl;
+  inherit (pkgs) lispPackages;
+  inherit (pkgs.third_party.nixpkgs) stdenv sbcl elmPackages makeWrapper openssl;
 
   frontend = stdenv.mkDerivation {
     name = "gemma-frontend";
diff --git a/services/tazblog/default.nix b/services/tazblog/default.nix
index 4d9608838d7c..41838e76055f 100644
--- a/services/tazblog/default.nix
+++ b/services/tazblog/default.nix
@@ -5,7 +5,7 @@
 { pkgs, ... }:
 
 let
-  inherit (pkgs) writeShellScriptBin haskell;
+  inherit (pkgs.third_party.nixpkgs) writeShellScriptBin haskell;
   tazblog = haskell.packages.ghc865.callPackage ./tazblog.nix {};
   wrapper =  writeShellScriptBin "tazblog" ''
     export PORT=8000
diff --git a/services/tazblog/shell.nix b/services/tazblog/shell.nix
index 021c3db31d31..ebb891a87458 100644
--- a/services/tazblog/shell.nix
+++ b/services/tazblog/shell.nix
@@ -1,4 +1,4 @@
-{ pkgs ? import ../../default.nix {} }:
+{ pkgs ? (import ../../default.nix {}).third_party.nixpkgs }:
 
 let tazblog = import ./tazblog.nix;
     depNames = with builtins; filter (