treewide: fixup bcf54ce

fix the executable bit for scripts installed with substituteAll
and some remaining shebangs.
This commit is contained in:
rnhmjoj
2019-04-12 09:09:22 +02:00
parent d0506bed9f
commit 5ea4160b33
9 changed files with 16 additions and 7 deletions
+4 -4
View File
@@ -27,9 +27,10 @@
let
rfkillHook =
substituteAll {
inherit (stdenv) shell;
src = ./rfkill-hook.sh;
};
inherit (stdenv) shell;
isExecutable = true;
src = ./rfkill-hook.sh;
};
in stdenv.mkDerivation {
name = "rfkill-udev";
@@ -44,7 +45,6 @@ in stdenv.mkDerivation {
mkdir -p "$out/bin/";
cp ${rfkillHook} "$out/bin/rfkill-hook.sh"
chmod +x "$out/bin/rfkill-hook.sh";
'';
meta = {