From b330d070c2e7469fe30ff3be33dc6e7a93f5a9d4 Mon Sep 17 00:00:00 2001 From: Sarah Date: Sun, 17 Oct 2021 13:35:23 +0200 Subject: [PATCH] Make sure nix-serve and nix are in path. --- default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/default.nix b/default.nix index 90e5d6e..16c6616 100644 --- a/default.nix +++ b/default.nix @@ -16,7 +16,7 @@ mach-nix.buildPythonApplication { src = lib.cleanSource ./.; version = builtins.readFile ./VERSION; requirements = builtins.readFile ./requirements.txt; - buildInputs = with pkgs; [ + propagatedBuildInputs = with pkgs; [ nix nix-serve ];