2021-01-15 14:21:58 +01:00
|
|
|
{ lib, stdenv , fetchFromGitHub
|
2021-01-19 07:50:56 +01:00
|
|
|
, pkg-config, autoreconfHook
|
2019-08-20 23:04:20 +02:00
|
|
|
, db5, openssl, boost, zlib, miniupnpc, libevent
|
2020-11-24 16:29:28 +01:00
|
|
|
, protobuf, util-linux, qt4, qrencode
|
2019-08-21 14:52:07 +02:00
|
|
|
, withGui }:
|
2014-11-30 14:13:47 +01:00
|
|
|
|
2021-01-15 14:21:58 +01:00
|
|
|
with lib;
|
2014-11-30 14:13:47 +01:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "dogecoin" + (toString (optional (!withGui) "d")) + "-" + version;
|
2021-08-22 00:07:32 +02:00
|
|
|
version = "1.14.4";
|
2014-11-30 14:13:47 +01:00
|
|
|
|
2017-03-07 03:49:01 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "dogecoin";
|
|
|
|
repo = "dogecoin";
|
|
|
|
rev = "v${version}";
|
2021-08-22 00:07:32 +02:00
|
|
|
sha256 = "sha256-uITX5DSyC/m0ynwCkkbGgUj8kMuNgnsNo8H8RQSGPEA=";
|
2014-11-30 14:13:47 +01:00
|
|
|
};
|
|
|
|
|
2021-01-19 07:50:56 +01:00
|
|
|
nativeBuildInputs = [ pkg-config autoreconfHook ];
|
2020-11-24 16:29:28 +01:00
|
|
|
buildInputs = [ openssl db5 openssl util-linux
|
2019-08-05 14:37:40 +02:00
|
|
|
protobuf boost zlib miniupnpc libevent ]
|
2014-11-30 14:13:47 +01:00
|
|
|
++ optionals withGui [ qt4 qrencode ];
|
|
|
|
|
|
|
|
configureFlags = [ "--with-incompatible-bdb"
|
2016-04-27 23:41:28 +02:00
|
|
|
"--with-boost-libdir=${boost.out}/lib" ]
|
2014-11-30 14:13:47 +01:00
|
|
|
++ optionals withGui [ "--with-gui" ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Wow, such coin, much shiba, very rich";
|
|
|
|
longDescription = ''
|
|
|
|
Dogecoin is a decentralized, peer-to-peer digital currency that
|
|
|
|
enables you to easily send money online. Think of it as "the
|
|
|
|
internet currency."
|
|
|
|
It is named after a famous Internet meme, the "Doge" - a Shiba Inu dog.
|
|
|
|
'';
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "http://www.dogecoin.com/";
|
2014-11-30 14:13:47 +01:00
|
|
|
license = licenses.mit;
|
2020-09-22 08:24:36 +02:00
|
|
|
maintainers = with maintainers; [ edwtjo offline ];
|
2017-03-07 03:49:01 +01:00
|
|
|
platforms = platforms.linux;
|
2014-11-30 14:13:47 +01:00
|
|
|
};
|
|
|
|
}
|