clan-infra/flake-parts/job-flake-update-clan-infra/default.nix

24 lines
383 B
Nix
Raw Normal View History

2023-07-26 17:49:17 +00:00
{
perSystem =
{ config
, pkgs
, self'
, ...
}:
let
name = builtins.baseNameOf ./.;
script = config.writers.writePureShellScriptBin
name
[
pkgs.bash
self'.packages.action-flake-update-pr-clan
2023-07-26 17:49:17 +00:00
]
''
bash ${./script.sh}
'';
in
{
packages.${name} = script;
};
}