We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5a0ecc0 commit 29559a8Copy full SHA for 29559a8
2 files changed
bin/update-flakes
@@ -0,0 +1,9 @@
1
+#!/usr/bin/env bash
2
+
3
+set -euo pipefail
4
5
+root_dir=$(realpath "$(dirname "$0")"/..)
6
7
+nix flake update
8
9
+fd flake.nix -j 4 -x bash -c 'echo "Updating flake inputs in {//}"; cd "{//}" && nix flake update --inputs-from "$0"' "$root_dir"
dev/flake.nix
@@ -220,8 +220,16 @@
220
};
221
222
devShells.default = pkgs.mkShell {
223
- buildInputs =
224
- [ jq omnix php phpunit phpPackages.composer shellcheck wp-cli ];
+ buildInputs = [
+ fd
225
+ jq
226
+ omnix
227
+ php
228
+ phpunit
229
+ phpPackages.composer
230
+ shellcheck
231
+ wp-cli
232
+ ];
233
inputsFrom =
234
[ config.process-compose."default".services.outputs.devShell ];
235
0 commit comments