about summary refs log tree commit diff
path: root/pkgs/applications/blockchains
diff options
context:
space:
mode:
authorSergei Trofimovich <slyich@gmail.com>2023-12-28 20:22:52 +0000
committerSergei Trofimovich <slyich@gmail.com>2023-12-28 20:22:52 +0000
commit69e0e70d59e13af369271ec4421bd8c9ff87a591 (patch)
tree0841e57247d8b9e0b04e1962e54529fad8c63b2a /pkgs/applications/blockchains
parentae9397e83b3c9c4358fdd8503d45fd9259a00b34 (diff)
downloadnixlib-69e0e70d59e13af369271ec4421bd8c9ff87a591.tar
nixlib-69e0e70d59e13af369271ec4421bd8c9ff87a591.tar.gz
nixlib-69e0e70d59e13af369271ec4421bd8c9ff87a591.tar.bz2
nixlib-69e0e70d59e13af369271ec4421bd8c9ff87a591.tar.lz
nixlib-69e0e70d59e13af369271ec4421bd8c9ff87a591.tar.xz
nixlib-69e0e70d59e13af369271ec4421bd8c9ff87a591.tar.zst
nixlib-69e0e70d59e13af369271ec4421bd8c9ff87a591.zip
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.
Diffstat (limited to 'pkgs/applications/blockchains')
-rw-r--r--pkgs/applications/blockchains/bitcoin-knots/default.nix4
1 files changed, 0 insertions, 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/";