commit 341dff11d6f85f031b04a8a74e08bfe01e4d56c9 parent 8d5c4a9adc7eeec2fd5437e1b83f39b5a1cf3d1a Author: Andreas Gruhler <andreas.gruhler@adfinis.com> Date: Fri, 20 Sep 2024 16:01:10 +0200 feat: add nix-shell Diffstat:
A | nix/shell.nix | | | 7 | +++++++ |
1 file changed, 7 insertions(+), 0 deletions(-)
diff --git a/nix/shell.nix b/nix/shell.nix @@ -0,0 +1,7 @@ +{ pkgs ? import <nixpkgs> {} }: + pkgs.mkShell { + nativeBuildInputs = with pkgs.buildPackages; [ + nodejs + websocat + ]; +}