From f634af9cef0bb38abf2fc066b306290c97d250bf Mon Sep 17 00:00:00 2001 From: Harald Hoyer Date: Mon, 24 Mar 2025 12:19:16 +0100 Subject: [PATCH] chore(devshell): add vault package to development shell - Added the `vault` package to the list of dev shell packages. - Adjusted formatting for parameter list to align with style conventions. --- nix/devshell.nix | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/nix/devshell.nix b/nix/devshell.nix index ab9d0d7..7d5320c 100644 --- a/nix/devshell.nix +++ b/nix/devshell.nix @@ -1,7 +1,7 @@ -{ - pkgs, - vault-hier, - rustVersion, +{ pkgs +, vault-hier +, rustVersion +, }: let @@ -19,6 +19,7 @@ pkgs.mkShell { packages = with pkgs; [ vault-hier # Add the vault-hier package to the dev shell toolchain_with_src # Add the custom Rust toolchain with source code to the dev shell + vault ]; nativeBuildInputs = [ vault-hier