2020-01-27 09:20:28 +00:00
|
|
|
{ stdenv, mkDerivation, fetchFromGitHub
|
2014-11-30 13:13:47 +00:00
|
|
|
, pkgconfig, autoreconfHook
|
|
|
|
, openssl, db48, boost, zlib, miniupnpc
|
2020-11-24 15:29:28 +00:00
|
|
|
, glib, protobuf, util-linux, qrencode
|
2018-09-12 20:50:33 +01:00
|
|
|
, AppKit
|
|
|
|
, withGui ? true, libevent
|
2020-01-27 09:20:28 +00:00
|
|
|
, qtbase, qttools
|
2020-01-27 09:22:31 +00:00
|
|
|
, zeromq
|
2018-09-12 20:50:33 +01:00
|
|
|
}:
|
2014-11-30 13:13:47 +00:00
|
|
|
|
|
|
|
with stdenv.lib;
|
2018-09-12 20:50:33 +01:00
|
|
|
|
2020-01-27 09:20:28 +00:00
|
|
|
mkDerivation rec {
|
2014-11-30 13:13:47 +00:00
|
|
|
|
|
|
|
name = "litecoin" + (toString (optional (!withGui) "d")) + "-" + version;
|
2020-06-14 22:06:58 +01:00
|
|
|
version = "0.18.1";
|
2014-11-30 13:13:47 +00:00
|
|
|
|
2017-03-07 20:47:59 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "litecoin-project";
|
|
|
|
repo = "litecoin";
|
|
|
|
rev = "v${version}";
|
2020-06-14 22:06:58 +01:00
|
|
|
sha256 = "11753zhyx1kmrlljc6kbjwrcb06dfcrsqvmw3iaki9a132qk6l5c";
|
2014-11-30 13:13:47 +00:00
|
|
|
};
|
|
|
|
|
2017-03-07 20:47:59 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig 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 ]
|
2018-09-12 20:50:33 +01:00
|
|
|
++ optionals stdenv.isDarwin [ AppKit ]
|
2020-01-27 09:20:28 +00:00
|
|
|
++ optionals withGui [ qtbase qttools qrencode ];
|
2014-11-30 13:13:47 +00:00
|
|
|
|
2016-04-27 22:41:28 +01:00
|
|
|
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" ];
|
2014-11-30 13:13:47 +00:00
|
|
|
|
2018-09-25 14:10:18 +01:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2017-03-07 20:47:59 +00:00
|
|
|
meta = {
|
2014-11-30 13:13:47 +00:00
|
|
|
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.
|
|
|
|
'';
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://litecoin.org/";
|
2014-11-30 13:13:47 +00:00
|
|
|
platforms = platforms.unix;
|
|
|
|
license = licenses.mit;
|
2018-09-12 20:50:33 +01:00
|
|
|
broken = stdenv.isDarwin;
|
2020-09-22 07:24:36 +01:00
|
|
|
maintainers = with maintainers; [ offline ];
|
2014-11-30 13:13:47 +00:00
|
|
|
};
|
|
|
|
}
|