From c2189c49c6735e1f1611e9897686e76ee0dc4fce Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carles=20Pag=C3=A8s?= Date: Fri, 7 Dec 2012 12:28:35 +0100 Subject: [PATCH] Weston: prevent install to chown root weston-launch. This operation fails with permission denied, and since this launcher is only needed when not running under X, I leave it disabled for the moment. --- pkgs/applications/window-managers/weston/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/applications/window-managers/weston/default.nix b/pkgs/applications/window-managers/weston/default.nix index ffd7c241ee4..c8919c1064b 100644 --- a/pkgs/applications/window-managers/weston/default.nix +++ b/pkgs/applications/window-managers/weston/default.nix @@ -23,6 +23,11 @@ stdenv.mkDerivation rec { preConfigure = "autoreconf -vfi"; + # prevent install target to chown root weston-launch, which fails + configureFlags = '' + --disable-setuid-install + ''; + meta = { description = "Reference implementation of a Wayland compositor"; homepage = http://wayland.freedesktop.org/;