infra/shell.nix
zowoq e4a10c6daf switch to nixpkgs deploykit
Flake lock file updates:

• Removed input 'deploykit'
• Removed input 'deploykit/flake-parts'
• Removed input 'deploykit/nixpkgs'
2022-11-07 14:06:56 +10:00

32 lines
428 B
Nix

{ pkgs ? import <nixpkgs> {}
, sops-import-keys-hook
}:
with pkgs;
mkShellNoCC {
sopsPGPKeyDirs = [
"./keys"
];
buildInputs = with pkgs; [
(terraform.withPlugins (
p: [
p.cloudflare
p.null
p.external
p.hydra
]
))
jq
sops
(python3.withPackages (
p: [
p.deploykit
p.invoke
]
))
rsync
sops-import-keys-hook
];
}