From 503e23b41e249c55d9da3580a7dd73d8f261d683 Mon Sep 17 00:00:00 2001 From: Sudarsan Balaji Date: Fri, 6 Sep 2024 08:45:47 +0100 Subject: [PATCH] Move bun to build inputs --- flake.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/flake.nix b/flake.nix index c2b3348..aea00fd 100644 --- a/flake.nix +++ b/flake.nix @@ -11,8 +11,8 @@ outputs = { self, nixpkgs, flake-utils, poetry2nix }: flake-utils.lib.eachDefaultSystem (system: let - nativeBuildInputs = with pkgs; [ stdenv python3 poetry tesseract nodejs_22 bun ]; - buildInputs = with pkgs; [ ollama ]; + nativeBuildInputs = with pkgs; [ stdenv python3 poetry tesseract nodejs_22 ]; + buildInputs = with pkgs; [ ollama bun ]; # see https://github.com/nix-community/poetry2nix/tree/master#api for more functions and examples. pkgs = nixpkgs.legacyPackages.${system};