From e48fe7d4698d9953dd47c0f4db71d65078bd9272 Mon Sep 17 00:00:00 2001 From: kirinnee Date: Sat, 11 Jan 2025 00:45:40 +0800 Subject: [PATCH] fix: incorrect releaser --- templates/bun/nix/shells.nix | 2 +- templates/dotnet/nix/shells.nix | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/bun/nix/shells.nix b/templates/bun/nix/shells.nix index 58904a3..7129017 100644 --- a/templates/bun/nix/shells.nix +++ b/templates/bun/nix/shells.nix @@ -19,7 +19,7 @@ with env; inherit shellHook; }; releaser = pkgs.mkShell { - buildInputs = system ++ main ++ lint + releaser; + buildInputs = system ++ main ++ lint ++ releaser; inherit shellHook; }; } diff --git a/templates/dotnet/nix/shells.nix b/templates/dotnet/nix/shells.nix index 58904a3..7129017 100644 --- a/templates/dotnet/nix/shells.nix +++ b/templates/dotnet/nix/shells.nix @@ -19,7 +19,7 @@ with env; inherit shellHook; }; releaser = pkgs.mkShell { - buildInputs = system ++ main ++ lint + releaser; + buildInputs = system ++ main ++ lint ++ releaser; inherit shellHook; }; }