clan-infra/flake-parts/action-create-pr/default.nix

26 lines
409 B
Nix
Raw Normal View History

2023-07-26 16:30:19 +00:00
{
perSystem =
{ config
, pkgs
, ...
}:
let
name = builtins.baseNameOf ./.;
script = config.writers.writePureShellScriptBin
name
[
pkgs.bash
pkgs.coreutils
pkgs.git
pkgs.tea
pkgs.openssh
]
''
bash ${./script.sh} "$@"
'';
in
{
packages.${name} = script;
};
}