nixpkgs/pkgs/applications/blockchains/litecoin.nix

56 lines
1.9 KiB
Nix
Raw Normal View History

2021-01-15 13:21:58 +00:00
{ lib, stdenv, mkDerivation, fetchFromGitHub
, pkg-config, autoreconfHook
, openssl, db48, boost, zlib, miniupnpc
2020-11-24 15:29:28 +00:00
, glib, protobuf, util-linux, qrencode
, AppKit
, withGui ? true, libevent
2020-01-27 09:20:28 +00:00
, qtbase, qttools
2020-01-27 09:22:31 +00:00
, zeromq
}:
2021-01-15 13:21:58 +00:00
with lib;
2020-01-27 09:20:28 +00:00
mkDerivation rec {
name = "litecoin" + (toString (optional (!withGui) "d")) + "-" + version;
2020-06-14 21:06:58 +00:00
version = "0.18.1";
2017-03-07 20:47:59 +00:00
src = fetchFromGitHub {
owner = "litecoin-project";
repo = "litecoin";
rev = "v${version}";
2020-06-14 21:06:58 +00:00
sha256 = "11753zhyx1kmrlljc6kbjwrcb06dfcrsqvmw3iaki9a132qk6l5c";
};
nativeBuildInputs = [ pkg-config autoreconfHook ];
2020-01-27 09:22:31 +00:00
buildInputs = [ openssl db48 boost zlib zeromq
2020-11-24 15:29:28 +00:00
miniupnpc glib protobuf util-linux libevent ]
++ optionals stdenv.isDarwin [ AppKit ]
2020-01-27 09:20:28 +00:00
++ optionals withGui [ qtbase qttools qrencode ];
configureFlags = [ "--with-boost-libdir=${boost.out}/lib" ]
2020-01-27 09:20:28 +00:00
++ optionals withGui [
"--with-gui=qt5"
"--with-qt-bindir=${qtbase.dev}/bin:${qttools.dev}/bin" ];
enableParallelBuilding = true;
2017-03-07 20:47:59 +00:00
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 ];
};
}