From 6523964125efba340dc56cd51f6e207b649e5056 Mon Sep 17 00:00:00 2001 From: electria Date: Mon, 13 Jul 2026 19:46:14 -0700 Subject: [PATCH] build: fix flake --- flake.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/flake.nix b/flake.nix index 9d9d5cd..190d497 100644 --- a/flake.nix +++ b/flake.nix @@ -15,20 +15,20 @@ cargoToml = fromTOML (builtins.readFile ./Cargo.toml); name = cargoToml.package.name; - buildInputs = with pkgs; [ + nativeBuildInputs = with pkgs; [ m4 ]; in { packages.default = pkgs.rustPlatform.buildRustPackage { - inherit name buildInputs; + inherit name nativeBuildInputs; src = ./.; cargoLock.lockFile = ./Cargo.lock; }; devShells.default = pkgs.mkShell { - inherit buildInputs; + inherit nativeBuildInputs; packages = with pkgs; [ rustc