0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-14 06:00:33 +03:00

nixos-option: don't eval description

see https://github.com/NixOS/nixpkgs/pull/31630#issuecomment-344073438
This commit is contained in:
Maximilian Bosch 2017-11-14 12:19:41 +01:00 committed by Nicolas B. Pierron
parent f3811adea6
commit 20a5e9db84

View file

@ -291,7 +291,7 @@ if test "$(evalOpt "_type" 2> /dev/null)" = '"option"'; then
fi
echo "Description:"
echo
eval printf $(evalOpt "description")
echo $(evalOpt "description")
echo $desc;