From 4a852bb21c5f0f648c648bc3e3902d3fef298575 Mon Sep 17 00:00:00 2001 From: Sebastian Sellmeier Date: Sun, 16 May 2021 19:22:24 +0200 Subject: [PATCH] nix-shell: add bash5 for testing (#209) --- shell.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/shell.nix b/shell.nix index 7bf3c65..2e8b96e 100644 --- a/shell.nix +++ b/shell.nix @@ -7,8 +7,9 @@ with lib; pkgs.mkShell { - buildInputs = with pkgs; [ bc coreutils i3lock-color gawk gnugrep gnused imagemagick procps shellcheck xorg.xdpyinfo xorg.xrandr xorg.xset ]; + buildInputs = with pkgs; [ bash_5 bc coreutils i3lock-color gawk gnugrep gnused imagemagick procps shellcheck xorg.xdpyinfo xorg.xrandr xorg.xset ]; shellHooks = '' + alias bash5="${pkgs.bash_5}/bin/bash" alias i3lock="i3lock-color" ''; }