2024-04-13 15:28:31 +00:00
|
|
|
{ flake-utils, pkgs, ... }: flake-utils.lib.eachDefaultSystem (system:
|
2024-03-27 19:10:14 +00:00
|
|
|
let
|
2024-05-19 12:05:20 +00:00
|
|
|
createScript = { name, runtimeInputs, scriptPath, extraWrapperFlags ? "", ... }:
|
2024-03-27 19:10:14 +00:00
|
|
|
let
|
2024-04-13 15:28:31 +00:00
|
|
|
script = (pkgs.writeScriptBin name (builtins.readFile scriptPath)).overrideAttrs (old: {
|
2024-03-27 19:10:14 +00:00
|
|
|
buildCommand = "${old.buildCommand}\n patchShebangs $out";
|
|
|
|
});
|
|
|
|
in
|
2024-04-13 15:28:31 +00:00
|
|
|
pkgs.symlinkJoin {
|
2024-03-27 19:10:14 +00:00
|
|
|
inherit name;
|
|
|
|
paths = [ script ] ++ runtimeInputs;
|
2024-04-13 15:28:31 +00:00
|
|
|
buildInputs = [ pkgs.makeWrapper ];
|
2024-05-19 12:05:20 +00:00
|
|
|
postBuild = "wrapProgram $out/bin/${name} --set PATH $out/bin ${extraWrapperFlags}";
|
2024-03-27 19:10:14 +00:00
|
|
|
};
|
|
|
|
in
|
|
|
|
{
|
2024-05-19 12:05:20 +00:00
|
|
|
packages.bootstrap = createScript {
|
|
|
|
name = "bootstrap";
|
2024-06-15 20:27:07 +00:00
|
|
|
runtimeInputs = with pkgs; [ sops coreutils nixos-anywhere ];
|
2024-05-19 12:05:20 +00:00
|
|
|
scriptPath = ./bootstrap.sh;
|
|
|
|
};
|
|
|
|
|
|
|
|
packages.gen-k3s-cert = createScript {
|
|
|
|
name = "create-k3s-cert";
|
|
|
|
runtimeInputs = with pkgs; [ openssl coreutils openssh yq ];
|
|
|
|
scriptPath = ./gen-k3s-cert.sh;
|
|
|
|
};
|
2024-03-27 19:10:14 +00:00
|
|
|
})
|