diff options
author | Josselin Poiret <dev@jpoiret.xyz> | 2024-05-06 11:16:41 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2024-08-31 10:45:02 +0200 |
commit | ce7794992da301f08a6c5d41aa12c2a1e4242397 (patch) | |
tree | e88daa213874292e3cf812b987effcd8e41cb108 /gnu | |
parent | 5ae81761ab293c6463ef8c4060cc01c7e74540d8 (diff) | |
download | guix-ce7794992da301f08a6c5d41aa12c2a1e4242397.tar.gz guix-ce7794992da301f08a6c5d41aa12c2a1e4242397.zip |
gnu: mutter: Don't try to install rules to udev's output.
* gnu/packages/gnome.scm (mutter): Install udev rules to our own output.
Change-Id: I4a332900321e86c53de485639a5651c9e9165766
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/gnome.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 32bc228173..ac19be2dc1 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -7976,7 +7976,8 @@ to display dialog boxes from the commandline and shell scripts.") (string-append "-Dgles2_libname=" (search-input-file %build-inputs "lib/libGLESv2.so")) "-Degl_device=true" ;false by default - "-Dwayland_eglstream=true") ;false by default + "-Dwayland_eglstream=true" ;false by default + (string-append "-Dudev_dir=" #$output "/lib/udev")) #:test-options '(list "--verbose") #:phases #~(modify-phases %standard-phases |