summary refs log tree commit diff
path: root/pkgs/shells/bash
diff options
context:
space:
mode:
authorSandro Jäckel <sandro.jaeckel@gmail.com>2023-02-12 13:48:04 +0100
committerSandro Jäckel <sandro.jaeckel@gmail.com>2023-02-12 13:48:04 +0100
commitd5e55b8df91e26d8e3407c4adcdc10c0425a27f2 (patch)
tree0006133ebb5fbdaac8da509ab74ee1dd1be8d9a4 /pkgs/shells/bash
parent6fe0b2308609dfcb5eea9c0aa287917ca6838bfe (diff)
downloadnixpkgs-d5e55b8df91e26d8e3407c4adcdc10c0425a27f2.tar
nixpkgs-d5e55b8df91e26d8e3407c4adcdc10c0425a27f2.tar.gz
nixpkgs-d5e55b8df91e26d8e3407c4adcdc10c0425a27f2.tar.bz2
nixpkgs-d5e55b8df91e26d8e3407c4adcdc10c0425a27f2.tar.lz
nixpkgs-d5e55b8df91e26d8e3407c4adcdc10c0425a27f2.tar.xz
nixpkgs-d5e55b8df91e26d8e3407c4adcdc10c0425a27f2.tar.zst
nixpkgs-d5e55b8df91e26d8e3407c4adcdc10c0425a27f2.zip
bash: add pkgsStatic.bash to passthru
to prevent regressions on updates
Diffstat (limited to 'pkgs/shells/bash')
-rw-r--r--pkgs/shells/bash/5.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/shells/bash/5.nix b/pkgs/shells/bash/5.nix
index 7735243d3ba..1b787e56076 100644
--- a/pkgs/shells/bash/5.nix
+++ b/pkgs/shells/bash/5.nix
@@ -12,6 +12,8 @@
 , withDocs ? false
 , texinfo
 , forFHSEnv ? false
+
+, pkgsStatic
 }:
 
 let
@@ -113,6 +115,7 @@ stdenv.mkDerivation rec {
 
   passthru = {
     shellPath = "/bin/bash";
+    tests.static = pkgsStatic.bash;
   };
 
   meta = with lib; {