From 87a001f0cc96ebee6c62586ad8aa7767c98d8f24 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Moritz=20B=C3=B6hme?= Date: Thu, 4 Sep 2025 08:03:03 +0200 Subject: [PATCH] build: add bacon do dev deps --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index d2c918e..5a3fb77 100644 --- a/flake.nix +++ b/flake.nix @@ -24,7 +24,7 @@ }: let runtimeDeps = with pkgs; []; buildDeps = with pkgs; [pkg-config rustPlatform.bindgenHook]; - devDeps = with pkgs; []; + devDeps = with pkgs; [bacon]; cargoToml = builtins.fromTOML (builtins.readFile ./Cargo.toml); msrv = cargoToml.package.rust-version;