From 5172dfd2d1e16f2f3d07787d9931baa20110613b Mon Sep 17 00:00:00 2001 From: Piotr Bogdan Date: Tue, 29 Aug 2017 17:27:59 +0100 Subject: [PATCH] swc: remove setuid from install script --- pkgs/development/libraries/swc/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/development/libraries/swc/default.nix b/pkgs/development/libraries/swc/default.nix index 48e1524e36f..bbc3aa20dd6 100644 --- a/pkgs/development/libraries/swc/default.nix +++ b/pkgs/development/libraries/swc/default.nix @@ -17,6 +17,10 @@ stdenv.mkDerivation rec { buildInputs = [ wld wayland xwayland fontconfig pixman libdrm libinput libevdev libxkbcommon libxcb xcbutilwm ]; + prePatch = '' + substituteInPlace launch/local.mk --replace 4755 755 + ''; + makeFlags = "PREFIX=$(out)"; installPhase = "PREFIX=$out make install";