clan-infra/pkgs/action-flake-update/default.nix
Jörg Thalheim 35b2e4a657
Some checks failed
build / test (push) Failing after 3s
move devShells out of flake-parts
2023-08-03 16:15:19 +02:00

10 lines
161 B
Nix

{ bash
, coreutils
, git
, nix
, writePureShellScriptBin
}:
writePureShellScriptBin "action-flake-update" [ bash coreutils git nix ] ''
bash ${./script.sh}
''