mirror of
https://github.com/Mic92/sops-nix.git
synced 2024-12-14 11:57:52 +00:00
12 lines
243 B
Nix
12 lines
243 B
Nix
|
{ buildGoModule, vendorSha256 }:
|
||
|
|
||
|
buildGoModule {
|
||
|
name = "sops-pgp-hook-test";
|
||
|
src = ../.;
|
||
|
inherit vendorSha256;
|
||
|
buildPhase = ''
|
||
|
go test -c ./pkgs/sops-pgp-hook
|
||
|
install -D sops-pgp-hook.test $out/bin/sops-pgp-hook.test
|
||
|
'';
|
||
|
}
|