summary refs log tree commit diff
path: root/pkgs/applications/blockchains
diff options
context:
space:
mode:
authorrnhmjoj <rnhmjoj@inventati.org>2022-11-24 11:46:09 +0100
committerrnhmjoj <rnhmjoj@inventati.org>2022-11-24 13:52:54 +0100
commitce270b33efba5dfce560412a63a6c98ef1b95293 (patch)
tree5faf665f03c1aaa65b98b0e56862e45fdd9b29f3 /pkgs/applications/blockchains
parent9fff86f3eba18c1370e47485a2758611d3dda237 (diff)
downloadnixpkgs-ce270b33efba5dfce560412a63a6c98ef1b95293.tar
nixpkgs-ce270b33efba5dfce560412a63a6c98ef1b95293.tar.gz
nixpkgs-ce270b33efba5dfce560412a63a6c98ef1b95293.tar.bz2
nixpkgs-ce270b33efba5dfce560412a63a6c98ef1b95293.tar.lz
nixpkgs-ce270b33efba5dfce560412a63a6c98ef1b95293.tar.xz
nixpkgs-ce270b33efba5dfce560412a63a6c98ef1b95293.tar.zst
nixpkgs-ce270b33efba5dfce560412a63a6c98ef1b95293.zip
bitcoin-gold: remove
Motivations:

1. Bitcoin Gold has been unmmaintained since 2020
2. The GUI wallet doesn't support Qt > 5.14, which is deprecated
Diffstat (limited to 'pkgs/applications/blockchains')
-rw-r--r--pkgs/applications/blockchains/bitcoin-gold/default.nix72
1 files changed, 0 insertions, 72 deletions
diff --git a/pkgs/applications/blockchains/bitcoin-gold/default.nix b/pkgs/applications/blockchains/bitcoin-gold/default.nix
deleted file mode 100644
index 5d6775f729a..00000000000
--- a/pkgs/applications/blockchains/bitcoin-gold/default.nix
+++ /dev/null
@@ -1,72 +0,0 @@
-{ lib, stdenv
-, fetchFromGitHub
-, openssl
-, boost
-, libb2
-, libevent
-, autoreconfHook
-, db4
-, pkg-config
-, protobuf
-, hexdump
-, zeromq
-, libsodium
-, withGui
-, qtbase ? null
-, qttools ? null
-, wrapQtAppsHook ? null
-}:
-
-with lib;
-
-stdenv.mkDerivation rec {
-
-  pname = "bitcoin" + toString (optional (!withGui) "d") + "-gold";
-  version = "0.17.3";
-
-  src = fetchFromGitHub {
-    owner = "BTCGPU";
-    repo = "BTCGPU";
-    rev = "v${version}";
-    sha256 = "sha256-1tFoUNsCPJkHSmNRl5gE3n2EQD6RZSry1zIM5hiTzEI=";
-  };
-
-  nativeBuildInputs = [
-    autoreconfHook
-    pkg-config
-    hexdump
-  ] ++ optionals withGui [
-    wrapQtAppsHook
-  ];
-
-  buildInputs = [
-    openssl
-    boost
-    libevent
-    db4
-    zeromq
-    libsodium
-    libb2
-  ] ++ optionals withGui [
-    qtbase
-    qttools
-    protobuf
-  ];
-
-  enableParallelBuilding = true;
-
-  configureFlags = [
-      "--with-boost-libdir=${boost.out}/lib"
-  ] ++ optionals withGui [
-      "--with-gui=qt5"
-      "--with-qt-bindir=${qtbase.dev}/bin:${qttools.dev}/bin"
-  ];
-
-  meta = {
-    description = "BTG is a cryptocurrency with Bitcoin fundamentals, mined on common GPUs instead of specialty ASICs";
-    homepage = "https://bitcoingold.org/";
-    license = licenses.mit;
-    maintainers = [ maintainers.mmahut ];
-    platforms = platforms.linux;
-  };
-}