2021-01-19 06:50:56 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, cmake, pkg-config, unbound, openssl, boost
|
2018-03-21 16:05:40 +00:00
|
|
|
, lmdb, miniupnpc, readline }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "masari";
|
2018-03-21 16:05:40 +00:00
|
|
|
version = "0.1.4.0";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "masari-project";
|
|
|
|
repo = "masari";
|
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "0l6i21wkq5f6z8xr756i7vqgkzk7lixaa31ydy34fkfcqxppgxz3";
|
|
|
|
};
|
|
|
|
|
2021-01-19 06:50:56 +00:00
|
|
|
nativeBuildInputs = [ cmake pkg-config ];
|
2018-03-21 16:05:40 +00:00
|
|
|
buildInputs = [ boost miniupnpc openssl lmdb unbound readline ];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "scalability-focused, untraceable, secure, and fungible cryptocurrency using the RingCT protocol";
|
|
|
|
homepage = "https://www.getmasari.org/";
|
|
|
|
license = licenses.bsd3;
|
|
|
|
maintainers = with maintainers; [ fpletz ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|