mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
31 lines
573 B
Bash
31 lines
573 B
Bash
#! @runtimeShell@
|
|
# shellcheck shell=bash
|
|
|
|
case "$1" in
|
|
-h|--help)
|
|
exec man nixos-version
|
|
exit 1
|
|
;;
|
|
--hash|--revision)
|
|
if ! [[ @revision@ =~ ^[0-9a-f]+$ ]]; then
|
|
echo "$0: Nixpkgs commit hash is unknown" >&2
|
|
exit 1
|
|
fi
|
|
echo "@revision@"
|
|
;;
|
|
--configuration-revision)
|
|
if [[ "@configurationRevision@" =~ "@" ]]; then
|
|
echo "$0: configuration revision is unknown" >&2
|
|
exit 1
|
|
fi
|
|
echo "@configurationRevision@"
|
|
;;
|
|
--json)
|
|
cat <<EOF
|
|
@json@
|
|
EOF
|
|
;;
|
|
*)
|
|
echo "@version@ (@codeName@)"
|
|
;;
|
|
esac
|