mirror of
https://github.com/Mic92/sops-nix.git
synced 2026-01-10 15:42:39 +08:00
13 lines
264 B
Nix
13 lines
264 B
Nix
{ buildGoModule }:
|
|
buildGoModule {
|
|
pname = "sops-install-secrets";
|
|
version = "0.0.1";
|
|
|
|
hardeningDisable = [ "all" ];
|
|
|
|
src = ../..;
|
|
|
|
subPackages = [ "pkgs/sops-install-secrets" ];
|
|
|
|
vendorSha256 = "sha256-O0z+oEffOOZa/bn2gV9onLVbPBHsNDH2yq1CZPi8w58=";
|
|
}
|