From c1e62b7a3229315b94bac32f90c1f937bd597fe9 Mon Sep 17 00:00:00 2001 From: Sarah Date: Sun, 17 Oct 2021 13:01:03 +0200 Subject: [PATCH] Add some missing build inputs. --- default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/default.nix b/default.nix index 22865ad..90e5d6e 100644 --- a/default.nix +++ b/default.nix @@ -16,4 +16,8 @@ mach-nix.buildPythonApplication { src = lib.cleanSource ./.; version = builtins.readFile ./VERSION; requirements = builtins.readFile ./requirements.txt; + buildInputs = with pkgs; [ + nix + nix-serve + ]; }