reference nixos tests in sops-install-secrets

This commit is contained in:
Jörg Thalheim 2020-07-12 16:59:20 +01:00
parent b75e51c423
commit 38e71e351c
No known key found for this signature in database
GPG key ID: 003F2096411B5F92
2 changed files with 12 additions and 4 deletions

View file

@ -1,4 +1,4 @@
{ buildGoModule }:
{ buildGoModule, path, pkgs }:
buildGoModule {
pname = "sops-install-secrets";
version = "0.0.1";
@ -9,5 +9,10 @@ buildGoModule {
subPackages = [ "pkgs/sops-install-secrets" ];
passthru.tests = import ./nixos-test.nix {
makeTest = import (path + "/nixos/tests/make-test-python.nix");
inherit pkgs;
};
vendorSha256 = "sha256-O0z+oEffOOZa/bn2gV9onLVbPBHsNDH2yq1CZPi8w58=";
}