From 9a65981c2d57cc578f3fa23fa6672e311c51afe8 Mon Sep 17 00:00:00 2001 From: Mario Rodas Date: Sat, 21 Nov 2020 04:20:00 +0000 Subject: [PATCH] vault-bin: remove passthru.tests nixosTests.vault uses the `vault` package --- pkgs/tools/security/vault/vault-bin.nix | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/pkgs/tools/security/vault/vault-bin.nix b/pkgs/tools/security/vault/vault-bin.nix index 580f6fc7b8e..805afe89d31 100644 --- a/pkgs/tools/security/vault/vault-bin.nix +++ b/pkgs/tools/security/vault/vault-bin.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, unzip, nixosTests }: +{ stdenv, fetchurl, unzip }: let version = "1.6.0"; @@ -40,8 +40,6 @@ in stdenv.mkDerivation { echo "complete -C $out/bin/vault vault" > $out/share/bash-completion/completions/vault ''; - passthru.tests.vault = nixosTests.vault; - meta = with stdenv.lib; { homepage = "https://www.vaultproject.io"; description = "A tool for managing secrets, this binary includes the UI";