From e97d5884238a483c8c62c4aabdf8f68d2dadb734 Mon Sep 17 00:00:00 2001 From: 1000101 Date: Thu, 17 Mar 2022 13:16:35 +0100 Subject: [PATCH] nix-info: add BUILD_ID information --- pkgs/tools/nix/info/info.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/tools/nix/info/info.sh b/pkgs/tools/nix/info/info.sh index 6708a541f3d9..c309e8be1649 100755 --- a/pkgs/tools/nix/info/info.sh +++ b/pkgs/tools/nix/info/info.sh @@ -84,7 +84,7 @@ desc_host_os() { ( # shellcheck disable=SC1091 . /etc/os-release - printf ", %s, %s" "${NAME:-$(uname -v)}" "${VERSION:-noversion}" + printf ", %s, %s, %s" "${NAME:-$(uname -v)}" "${VERSION:-noversion}" "${BUILD_ID:-nobuild}" ) fi }