summary refs log tree commit diff
path: root/pkgs/applications/window-managers/weston
diff options
context:
space:
mode:
authorCarles Pagès <page@cubata.homelinux.net>2012-12-07 12:28:35 +0100
committerCarles Pagès <page@cubata.homelinux.net>2012-12-07 12:28:35 +0100
commitc2189c49c6735e1f1611e9897686e76ee0dc4fce (patch)
tree52cf6c3bf0d9986ee34e69b237d5a823c802a2b9 /pkgs/applications/window-managers/weston
parentec99d9603c59a2c9b21ee7e7dcf687f603217c74 (diff)
downloadnixpkgs-c2189c49c6735e1f1611e9897686e76ee0dc4fce.tar
nixpkgs-c2189c49c6735e1f1611e9897686e76ee0dc4fce.tar.gz
nixpkgs-c2189c49c6735e1f1611e9897686e76ee0dc4fce.tar.bz2
nixpkgs-c2189c49c6735e1f1611e9897686e76ee0dc4fce.tar.lz
nixpkgs-c2189c49c6735e1f1611e9897686e76ee0dc4fce.tar.xz
nixpkgs-c2189c49c6735e1f1611e9897686e76ee0dc4fce.tar.zst
nixpkgs-c2189c49c6735e1f1611e9897686e76ee0dc4fce.zip
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.
Diffstat (limited to 'pkgs/applications/window-managers/weston')
-rw-r--r--pkgs/applications/window-managers/weston/default.nix5
1 files changed, 5 insertions, 0 deletions
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/;