make the scripts executable
This commit is contained in:
parent
1647556eb0
commit
1dde09e276
1 changed files with 2 additions and 1 deletions
|
@ -31,7 +31,8 @@ in
|
||||||
|
|
||||||
installPhase = lib.concatStringsSep "\n"
|
installPhase = lib.concatStringsSep "\n"
|
||||||
([ "mkdir -p $out/bin" ] ++
|
([ "mkdir -p $out/bin" ] ++
|
||||||
map (d: "cp ${dir d}/* $out/bin") (lib.attrNames deps));
|
map (d: "cp ${dir d}/* $out/bin") (lib.attrNames deps) ++
|
||||||
|
[ "chmod a+x $out/bin/*" ]);
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "niss's funny little scripts";
|
description = "niss's funny little scripts";
|
||||||
|
|
Loading…
Add table
Reference in a new issue