From 4b0b54a907878cafd51584f305c4422736af5e05 Mon Sep 17 00:00:00 2001 From: Tristan Ross Date: Fri, 7 Nov 2025 16:08:58 -0800 Subject: [PATCH] bash: fix cpe eval --- pkgs/shells/bash/5.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/shells/bash/5.nix b/pkgs/shells/bash/5.nix index 0ca4ca768b5d..017edfe2613e 100644 --- a/pkgs/shells/bash/5.nix +++ b/pkgs/shells/bash/5.nix @@ -278,7 +278,7 @@ lib.warnIf (withDocs != null) mainProgram = "bash"; identifiers.cpeParts = let - versionSplit = lib.split "p" version; + versionSplit = lib.split "p" fa.version; in { vendor = "gnu";