about summary refs log tree commit diff
path: root/pkgs/applications/altcoins
diff options
context:
space:
mode:
authorJoerg Thalheim <joerg@thalheim.io>2017-11-20 22:41:44 +0000
committerRobin Gloster <mail@glob.in>2017-11-21 02:03:02 +0100
commitce98c217d7bfdb176c31d46d993c48ec3ebcc435 (patch)
tree547d8684a29719a7a8ff40240abed1fd69fc2d1c /pkgs/applications/altcoins
parent6327ba20896d69a35a619a241b0f89e463e53d60 (diff)
downloadnixlib-ce98c217d7bfdb176c31d46d993c48ec3ebcc435.tar
nixlib-ce98c217d7bfdb176c31d46d993c48ec3ebcc435.tar.gz
nixlib-ce98c217d7bfdb176c31d46d993c48ec3ebcc435.tar.bz2
nixlib-ce98c217d7bfdb176c31d46d993c48ec3ebcc435.tar.lz
nixlib-ce98c217d7bfdb176c31d46d993c48ec3ebcc435.tar.xz
nixlib-ce98c217d7bfdb176c31d46d993c48ec3ebcc435.tar.zst
nixlib-ce98c217d7bfdb176c31d46d993c48ec3ebcc435.zip
hivemind: remove
Project seems dead and stopped building in august.
cc @canndrew
Diffstat (limited to 'pkgs/applications/altcoins')
-rw-r--r--pkgs/applications/altcoins/default.nix3
-rw-r--r--pkgs/applications/altcoins/hivemind.nix39
2 files changed, 0 insertions, 42 deletions
diff --git a/pkgs/applications/altcoins/default.nix b/pkgs/applications/altcoins/default.nix
index bccb6a34e8e3..aeab29534691 100644
--- a/pkgs/applications/altcoins/default.nix
+++ b/pkgs/applications/altcoins/default.nix
@@ -32,9 +32,6 @@ rec {
   };
   go-ethereum-classic = callPackage ./go-ethereum-classic { };
 
-  hivemind = callPackage ./hivemind.nix { withGui = true; };
-  hivemindd = callPackage ./hivemind.nix { withGui = false; };
-
   litecoin  = callPackage ./litecoin.nix { withGui = true; };
   litecoind = callPackage ./litecoin.nix { withGui = false; };
 
diff --git a/pkgs/applications/altcoins/hivemind.nix b/pkgs/applications/altcoins/hivemind.nix
deleted file mode 100644
index 208a2d3915f0..000000000000
--- a/pkgs/applications/altcoins/hivemind.nix
+++ /dev/null
@@ -1,39 +0,0 @@
-{ stdenv, fetchFromGitHub, pkgconfig, autoreconfHook, openssl, db48, boost
-, zlib, miniupnpc, qt4, utillinux, protobuf, qrencode, libevent
-, withGui }:
-
-with stdenv.lib;
-stdenv.mkDerivation rec {
-  name = "hivemind" + (toString (optional (!withGui) "d")) + "-" + version;
-  version = "unstable";
-
-  src = fetchFromGitHub {
-    owner = "bitcoin-hivemind";
-    repo = "hivemind";
-    rev = "147973cfe76867410578d91d6f0a8df105cab4e0";
-    sha256 = "1ndqqma1b0sh2gn7cl8d9fg44q0g2g42jr2y0nifkjgfjn3c7l5h";
-  };
-
-  nativeBuildInputs = [ pkgconfig autoreconfHook ];
-  buildInputs = [ openssl db48 boost zlib
-                  miniupnpc protobuf libevent]
-                  ++ optionals stdenv.isLinux [ utillinux ]
-                  ++ optionals withGui [ qt4 qrencode ];
-
-  configureFlags = [ "--with-boost-libdir=${boost.out}/lib" 
-                     "--with-incompatible-bdb"
-                   ] ++ optionals withGui [ "--with-gui=qt4" ];
-
-  meta = {
-    description = "Peer-to-Peer oracle protocol";
-    longDescription= ''
-      Hivemind is a Peer-to-Peer Oracle Protocol which absorbs accurate data
-      into a blockchain so that Bitcoin-users can speculate in Prediction
-      Markets.
-    '';
-    homepage = https://bitcoinhivemind.com;
-    maintainers = with maintainers; [ canndrew ];
-    license = licenses.mit;
-    platforms = platforms.unix;
-  };
-}