summary refs log tree commit diff
path: root/pkgs/applications/blockchains/litecoin.nix
diff options
context:
space:
mode:
authorSandro Jäckel <sandro.jaeckel@gmail.com>2021-07-27 15:31:23 +0200
committerSandro Jäckel <sandro.jaeckel@gmail.com>2021-07-28 13:29:10 +0200
commit06a2b9fa9522fb9b52f5dc569a44a3c99f6a6838 (patch)
tree2c225fd97e63b775b742b9f5b48b0591199156ad /pkgs/applications/blockchains/litecoin.nix
parentabce989b6c9a5ce4fa2951e821978b84efd7d018 (diff)
downloadnixpkgs-06a2b9fa9522fb9b52f5dc569a44a3c99f6a6838.tar
nixpkgs-06a2b9fa9522fb9b52f5dc569a44a3c99f6a6838.tar.gz
nixpkgs-06a2b9fa9522fb9b52f5dc569a44a3c99f6a6838.tar.bz2
nixpkgs-06a2b9fa9522fb9b52f5dc569a44a3c99f6a6838.tar.lz
nixpkgs-06a2b9fa9522fb9b52f5dc569a44a3c99f6a6838.tar.xz
nixpkgs-06a2b9fa9522fb9b52f5dc569a44a3c99f6a6838.tar.zst
nixpkgs-06a2b9fa9522fb9b52f5dc569a44a3c99f6a6838.zip
pkgs/applications/blockchains: move packages into subdirs
Diffstat (limited to 'pkgs/applications/blockchains/litecoin.nix')
-rw-r--r--pkgs/applications/blockchains/litecoin.nix55
1 files changed, 0 insertions, 55 deletions
diff --git a/pkgs/applications/blockchains/litecoin.nix b/pkgs/applications/blockchains/litecoin.nix
deleted file mode 100644
index c80ef342c75..00000000000
--- a/pkgs/applications/blockchains/litecoin.nix
+++ /dev/null
@@ -1,55 +0,0 @@
-{ lib, stdenv, mkDerivation, fetchFromGitHub
-, pkg-config, autoreconfHook
-, openssl, db48, boost, zlib, miniupnpc
-, glib, protobuf, util-linux, qrencode
-, AppKit
-, withGui ? true, libevent
-, qtbase, qttools
-, zeromq
-}:
-
-with lib;
-
-mkDerivation rec {
-
-  name = "litecoin" + (toString (optional (!withGui) "d")) + "-" + version;
-  version = "0.18.1";
-
-  src = fetchFromGitHub {
-    owner = "litecoin-project";
-    repo = "litecoin";
-    rev = "v${version}";
-    sha256 = "11753zhyx1kmrlljc6kbjwrcb06dfcrsqvmw3iaki9a132qk6l5c";
-  };
-
-  nativeBuildInputs = [ pkg-config autoreconfHook ];
-  buildInputs = [ openssl db48 boost zlib zeromq
-                  miniupnpc glib protobuf util-linux libevent ]
-                  ++ optionals stdenv.isDarwin [ AppKit ]
-                  ++ optionals withGui [ qtbase qttools qrencode ];
-
-  configureFlags = [ "--with-boost-libdir=${boost.out}/lib" ]
-                   ++ optionals withGui [
-                      "--with-gui=qt5"
-                      "--with-qt-bindir=${qtbase.dev}/bin:${qttools.dev}/bin" ];
-
-  enableParallelBuilding = true;
-
-  meta = {
-    description = "A lite version of Bitcoin using scrypt as a proof-of-work algorithm";
-    longDescription= ''
-      Litecoin is a peer-to-peer Internet currency that enables instant payments
-      to anyone in the world. It is based on the Bitcoin protocol but differs
-      from Bitcoin in that it can be efficiently mined with consumer-grade hardware.
-      Litecoin provides faster transaction confirmations (2.5 minutes on average)
-      and uses a memory-hard, scrypt-based mining proof-of-work algorithm to target
-      the regular computers and GPUs most people already have.
-      The Litecoin network is scheduled to produce 84 million currency units.
-    '';
-    homepage = "https://litecoin.org/";
-    platforms = platforms.unix;
-    license = licenses.mit;
-    broken = stdenv.isDarwin;
-    maintainers = with maintainers; [ offline ];
-  };
-}