1
0
Fork 0
mirror of https://github.com/Mic92/sops-nix.git synced 2024-12-15 17:50:51 +00:00
sops-nix/pkgs/sops-pgp-hook-test.nix
2023-07-15 06:49:20 +00:00

11 lines
239 B
Nix

{ buildGoModule, vendorHash }:
buildGoModule {
name = "sops-pgp-hook-test";
src = ../.;
inherit vendorHash;
buildPhase = ''
go test -c ./pkgs/sops-pgp-hook
install -D sops-pgp-hook.test $out/bin/sops-pgp-hook.test
'';
}