diff --git a/pkgs/applications/blockchains/bitcoin-abc/default.nix b/pkgs/applications/blockchains/bitcoin-abc/default.nix deleted file mode 100644 index a59989946e5a..000000000000 --- a/pkgs/applications/blockchains/bitcoin-abc/default.nix +++ /dev/null @@ -1,99 +0,0 @@ -{ - lib, - stdenv, - mkDerivation, - fetchFromGitHub, - fetchpatch2, - pkg-config, - cmake, - openssl, - db53, - boost, - zlib, - miniupnpc, - qtbase ? null, - qttools ? null, - util-linux, - protobuf, - qrencode, - libevent, - libnatpmp, - sqlite, - withGui, - python3, - jemalloc, - zeromq, -}: - -mkDerivation rec { - pname = "bitcoin" + lib.optionalString (!withGui) "d" + "-abc"; - version = "0.29.7"; - - src = fetchFromGitHub { - owner = "bitcoin-ABC"; - repo = "bitcoin-abc"; - rev = "v${version}"; - hash = "sha256-+9uBmmdQ/shWYnJ7tM+Y8OgqYcQHHI2qeMw2tl1lE+w="; - }; - - patches = [ - # upnp: add compatibility for miniupnpc 2.2.8 - (fetchpatch2 { - url = "https://github.com/Bitcoin-ABC/bitcoin-abc/commit/5678070f182124a1a8c7c60873d1877094be76ab.patch?full_index=1"; - hash = "sha256-QC7TlWepVxQuIZVTbGtQy+HmmXP8PWNhJWdVYudJvmI="; - }) - ]; - - nativeBuildInputs = [ - pkg-config - cmake - ]; - buildInputs = - [ - openssl - db53 - boost - zlib - python3 - jemalloc - libnatpmp - zeromq - miniupnpc - util-linux - protobuf - libevent - sqlite - ] - ++ lib.optionals withGui [ - qtbase - qttools - qrencode - ]; - - cmakeFlags = lib.optionals (!withGui) [ - "-DBUILD_BITCOIN_QT=OFF" - ]; - - # many of the generated scripts lack execute permissions - postConfigure = '' - find ./. -type f -iname "*.sh" -exec chmod +x {} \; - ''; - - meta = { - description = "Peer-to-peer electronic cash system (Cash client)"; - longDescription = '' - Bitcoin ABC is the name of open source software which enables the use of Bitcoin. - It is designed to facilite a hard fork to increase Bitcoin's block size limit. - "ABC" stands for "Adjustable Blocksize Cap". - - Bitcoin ABC is a fork of the Bitcoin Core software project. - ''; - homepage = "https://bitcoinabc.org/"; - changelog = "https://www.bitcoinabc.org/doc/release-notes/release-notes-${version}.html"; - maintainers = with lib.maintainers; [ lassulus ]; - license = lib.licenses.mit; - broken = stdenv.hostPlatform.isDarwin; - platforms = lib.platforms.unix; - mainProgram = "bitcoin-cli"; - }; -} diff --git a/pkgs/by-name/el/electron-cash/package.nix b/pkgs/by-name/el/electron-cash/package.nix deleted file mode 100644 index ff2b24cdc7e0..000000000000 --- a/pkgs/by-name/el/electron-cash/package.nix +++ /dev/null @@ -1,112 +0,0 @@ -{ - lib, - stdenv, - fetchFromGitHub, - python3Packages, - qt5, - secp256k1, -}: - -python3Packages.buildPythonApplication rec { - pname = "electron-cash"; - version = "4.4.2"; - - src = fetchFromGitHub { - owner = "Electron-Cash"; - repo = "Electron-Cash"; - tag = version; - sha256 = "sha256-hqaPxetS6JONvlRMjNonXUGFpdmnuadD00gcPzY07x0="; - }; - - build-system = with python3Packages; [ - cython - ]; - - propagatedBuildInputs = with python3Packages; [ - # requirements - pyaes - ecdsa - requests - qrcode - protobuf - jsonrpclib-pelix - pysocks - qdarkstyle - python-dateutil - stem - certifi - pathvalidate - dnspython - bitcoinrpc - - # requirements-binaries - pyqt5 - psutil - pycryptodomex - cryptography - zxing-cpp - - # requirements-hw - trezor - keepkey - btchip-python - hidapi - pyopenssl - pyscard - pysatochip - ]; - - nativeBuildInputs = [ qt5.wrapQtAppsHook ]; - - buildInputs = [ ] ++ lib.optional stdenv.hostPlatform.isLinux qt5.qtwayland; - - # If secp256k1 wasn't added to the library path, the following warning is given: - # - # Electron Cash was unable to find the secp256k1 library on this system. - # Elliptic curve cryptography operations will be performed in slow - # Python-only mode. - # - # Upstream hardcoded `libsecp256k1.so.0` where we provides - # `libsecp256k1.so.5`. The only breaking change is the removal of two - # functions which seem not used by electron-cash. - # See: - postPatch = '' - substituteInPlace setup.py \ - --replace-fail "(share_dir" '("share"' - substituteInPlace electroncash/secp256k1.py \ - --replace-fail "libsecp256k1.so.0" "${secp256k1}/lib/libsecp256k1.so.5" - ''; - - preFixup = '' - makeWrapperArgs+=("''${qtWrapperArgs[@]}") - ''; - - doInstallCheck = true; - installCheckPhase = '' - output="$($out/bin/electron-cash help 2>&1)" - if [[ "$output" == *"failed to load"* ]]; then - echo "$output" - echo "Forbidden text detected: failed to load" - exit 1 - fi - ''; - - meta = { - description = "Bitcoin Cash SPV Wallet"; - mainProgram = "electron-cash"; - longDescription = '' - An easy-to-use Bitcoin Cash client featuring wallets generated from - mnemonic seeds (in addition to other, more advanced, wallet options) - and the ability to perform transactions without downloading a copy - of the blockchain. - ''; - homepage = "https://www.electroncash.org/"; - platforms = lib.platforms.unix; - maintainers = with lib.maintainers; [ - lassulus - nyanloutre - oxalica - ]; - license = lib.licenses.mit; - }; -} diff --git a/pkgs/top-level/aliases.nix b/pkgs/top-level/aliases.nix index 8f7e5b0cd269..24971a095c16 100644 --- a/pkgs/top-level/aliases.nix +++ b/pkgs/top-level/aliases.nix @@ -344,7 +344,9 @@ mapAliases { betterbird-unwrapped = throw "betterbird has been removed as there were insufficient maintainer resources to keep up with security updates"; # Added 2024-10-25 bibata-extra-cursors = throw "bibata-cursors has been removed as it was broken"; # Added 2024-07-15 bitbucket-server-cli = throw "bitbucket-server-cli has been removed due to lack of maintenance upstream."; # Added 2025-05-27 + bitcoin-abc = throw "bitcoin-abc has been removed due to a lack of maintanance"; # Added 2026-06-17 bitcoin-unlimited = throw "bitcoin-unlimited has been removed as it was broken and unmaintained"; # Added 2024-07-15 + bitcoind-abc = throw "bitcoind-abc has been removed due to a lack of maintanance"; # Added 2026-06-17 bitcoind-unlimited = throw "bitcoind-unlimited has been removed as it was broken and unmaintained"; # Added 2024-07-15 bird = throw "The bird alias was ambiguous and has been removed for the time being. Please explicitly choose bird2 or bird3."; # Added 2025-01-11 bisq-desktop = throw "bisq-desktop has been removed because OpenJFX 11 was removed"; # Added 2024-11-17 @@ -593,6 +595,7 @@ mapAliases { eidolon = throw "eidolon was removed as it is unmaintained upstream."; # Added 2025-05-28 eintopf = lauti; # Project was renamed, added 2025-05-01 elasticsearch7Plugins = elasticsearchPlugins; + electron-cash = throw "'electron-cash' has been removed due to lack of maintenance."; # Added 2025-06-17 electronplayer = throw "'electronplayer' has been removed as it had been discontinued upstream since October 2024"; # Added 2024-12-17 element-desktop-wayland = throw "element-desktop-wayland has been removed. Consider setting NIXOS_OZONE_WL=1 via 'environment.sessionVariables' instead"; # Added 2024-12-17 diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 30576c0925b4..808fd133a22e 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -14641,16 +14641,6 @@ with pkgs; inherit (darwin) autoSignDarwinBinariesHook; }; - bitcoin-abc = libsForQt5.callPackage ../applications/blockchains/bitcoin-abc { - withGui = true; - protobuf = protobuf_21; - }; - bitcoind-abc = callPackage ../applications/blockchains/bitcoin-abc { - mkDerivation = stdenv.mkDerivation; - protobuf = protobuf_21; - withGui = false; - }; - cryptop = python3.pkgs.callPackage ../applications/blockchains/cryptop { }; elements = libsForQt5.callPackage ../applications/blockchains/elements {