From 9c3e27dd17726e1e82dc23fd6b0fc572b8db41de Mon Sep 17 00:00:00 2001 From: Douglas Deslauriers Date: Wed, 22 Jan 2025 08:47:58 -0500 Subject: [PATCH] gnu: vmware-open-vm-tools: Resolve poweron script failure. * gnu/packages/virtualization.scm (vmware-open-vm-tools)[phases] : Fix the path to the store for running the power-on script. Change-Id: I35bcacedb0ed0e17a1535ec84d1a987cda6a262d Signed-off-by: Sharlatan Hellseher --- gnu/packages/virtualization.scm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/gnu/packages/virtualization.scm b/gnu/packages/virtualization.scm index 5863364bb8b..5ce6133669d 100644 --- a/gnu/packages/virtualization.scm +++ b/gnu/packages/virtualization.scm @@ -41,6 +41,7 @@ ;;; Copyright © 2024, 2025 Giacomo Leidi ;;; Copyright © 2024 Artyom V. Poptsov ;;; Copyright © 2025 Karl Hallsby +;;; Copyright © 2025 Douglas Deslauriers ;;; ;;; This file is part of GNU Guix. ;;; @@ -1895,6 +1896,9 @@ domains, their live performance and resource utilization statistics.") (("/bin/fusermount3") (string-append #$(this-package-input "fuse") "/bin/fusermount3"))) + (substitute* "lib/guestApp/guestApp.c" + (("/etc/vmware-tools") + (string-append #$output "/etc/vmware-tools"))) ;; XXX: This part might need more testing with shutdown and halt ;; commands provided by Shepherd. (substitute* "lib/system/systemLinux.c"