From 69e0e70d59e13af369271ec4421bd8c9ff87a591 Mon Sep 17 00:00:00 2001 From: Sergei Trofimovich Date: Thu, 28 Dec 2023 20:22:52 +0000 Subject: [PATCH] bitcoind-knots: remove non-working `tests` attribute Without the change `bitcoind-knots.tests` fails to evaluate: $ nix build --no-link -f. bitcoind-knots.tests error: attribute 'bitcoind-knots' missing 71| passthru.tests = { 72| smoke-test = nixosTests.bitcoind-knots; | ^ 73| }; From what I can see `nixos/tests/all-tests.nix` never had a `bitcoind-knots` present. --- pkgs/applications/blockchains/bitcoin-knots/default.nix | 4 ---- 1 file changed, 4 deletions(-) diff --git a/pkgs/applications/blockchains/bitcoin-knots/default.nix b/pkgs/applications/blockchains/bitcoin-knots/default.nix index d8378f5e9f06..ace8329bb876 100644 --- a/pkgs/applications/blockchains/bitcoin-knots/default.nix +++ b/pkgs/applications/blockchains/bitcoin-knots/default.nix @@ -68,10 +68,6 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - passthru.tests = { - smoke-test = nixosTests.bitcoind-knots; - }; - meta = with lib; { description = "A derivative of Bitcoin Core with a collection of improvements"; homepage = "https://bitcoinknots.org/";