diff --git a/shell.nix b/shell.nix index ada4520..f1a76a4 100644 --- a/shell.nix +++ b/shell.nix @@ -1,23 +1,8 @@ -{ - pkgs ? import { }, -}: - -pkgs.mkShell { - nativeBuildInputs = with pkgs; [ - gcc - cmake - gnumake - pkg-config - ]; - - buildInputs = with pkgs; [ - zstd - ]; - - NIX_ENFORCE_PURITY = 0; - +{ pkgs }: { shellHook = '' - export NIX_ENFORCE_PURITY=0 - cmake -B build + echo "Setting up environment with gh CLI tool" ''; -} + buildInputs = [ + pkgs.gh + ]; +} \ No newline at end of file