format tree
This commit is contained in:
parent
24547fcd6c
commit
92c55595d0
43 changed files with 476 additions and 357 deletions
dev
|
@ -1,32 +1,39 @@
|
|||
{ inputs', pkgs, ... }:
|
||||
{
|
||||
devShells = {
|
||||
default = with pkgs; mkShellNoCC {
|
||||
packages = [
|
||||
inputs'.agenix.packages.default
|
||||
jq
|
||||
python3.pkgs.deploykit
|
||||
python3.pkgs.invoke
|
||||
sops
|
||||
ssh-to-age
|
||||
];
|
||||
};
|
||||
sotp = with pkgs; mkShellNoCC {
|
||||
packages = [
|
||||
(buildGoModule rec {
|
||||
pname = "sotp";
|
||||
version = "e7f7c804b1641169ce850d8352fb07294881609e";
|
||||
src = pkgs.fetchFromGitHub {
|
||||
owner = "getsops";
|
||||
repo = "sotp";
|
||||
rev = version;
|
||||
hash = "sha256-Cu8cZCmM19G5zeMIiiaCwVJee8wrBZP3Ltk1jWKb2vs=";
|
||||
};
|
||||
vendorHash = "sha256-vQruuohwi53By8UZLrPbRtUrmNbmPt+Sku9hI5J3Dlc=";
|
||||
ldflags = [ "-s" "-w" ];
|
||||
doCheck = false;
|
||||
})
|
||||
];
|
||||
};
|
||||
default =
|
||||
with pkgs;
|
||||
mkShellNoCC {
|
||||
packages = [
|
||||
inputs'.agenix.packages.default
|
||||
jq
|
||||
python3.pkgs.deploykit
|
||||
python3.pkgs.invoke
|
||||
sops
|
||||
ssh-to-age
|
||||
];
|
||||
};
|
||||
sotp =
|
||||
with pkgs;
|
||||
mkShellNoCC {
|
||||
packages = [
|
||||
(buildGoModule rec {
|
||||
pname = "sotp";
|
||||
version = "e7f7c804b1641169ce850d8352fb07294881609e";
|
||||
src = pkgs.fetchFromGitHub {
|
||||
owner = "getsops";
|
||||
repo = "sotp";
|
||||
rev = version;
|
||||
hash = "sha256-Cu8cZCmM19G5zeMIiiaCwVJee8wrBZP3Ltk1jWKb2vs=";
|
||||
};
|
||||
vendorHash = "sha256-vQruuohwi53By8UZLrPbRtUrmNbmPt+Sku9hI5J3Dlc=";
|
||||
ldflags = [
|
||||
"-s"
|
||||
"-w"
|
||||
];
|
||||
doCheck = false;
|
||||
})
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue