summary refs log tree commit diff
path: root/pkgs/applications/blockchains/masari.nix
blob: bf995da36afaa9829056964cab78f44edd0486d0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ lib, stdenv, fetchFromGitHub, cmake, pkg-config, unbound, openssl, boost
, lmdb, miniupnpc, readline }:

stdenv.mkDerivation rec {
  pname = "masari";
  version = "0.1.4.0";

  src = fetchFromGitHub {
    owner = "masari-project";
    repo = "masari";
    rev = "v${version}";
    sha256 = "0l6i21wkq5f6z8xr756i7vqgkzk7lixaa31ydy34fkfcqxppgxz3";
  };

  nativeBuildInputs = [ cmake pkg-config ];
  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;
  };
}