altcoins.masari: init at 0.1.4.0
This commit is contained in:
parent
f2fea9042e
commit
ab5f98a77e
@ -46,6 +46,8 @@ rec {
|
|||||||
litecoin = callPackage ./litecoin.nix { withGui = true; };
|
litecoin = callPackage ./litecoin.nix { withGui = true; };
|
||||||
litecoind = callPackage ./litecoin.nix { withGui = false; };
|
litecoind = callPackage ./litecoin.nix { withGui = false; };
|
||||||
|
|
||||||
|
masari = callPackage ./masari.nix { };
|
||||||
|
|
||||||
memorycoin = callPackage ./memorycoin.nix { boost = boost165; withGui = true; };
|
memorycoin = callPackage ./memorycoin.nix { boost = boost165; withGui = true; };
|
||||||
memorycoind = callPackage ./memorycoin.nix { boost = boost165; withGui = false; };
|
memorycoind = callPackage ./memorycoin.nix { boost = boost165; withGui = false; };
|
||||||
|
|
||||||
|
27
pkgs/applications/altcoins/masari.nix
Normal file
27
pkgs/applications/altcoins/masari.nix
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
{ lib, stdenv, fetchFromGitHub, cmake, pkgconfig, unbound, openssl, boost
|
||||||
|
, lmdb, miniupnpc, readline }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "masari-${version}";
|
||||||
|
version = "0.1.4.0";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "masari-project";
|
||||||
|
repo = "masari";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "0l6i21wkq5f6z8xr756i7vqgkzk7lixaa31ydy34fkfcqxppgxz3";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ cmake pkgconfig ];
|
||||||
|
buildInputs = [ boost miniupnpc openssl lmdb unbound readline ];
|
||||||
|
|
||||||
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
|
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;
|
||||||
|
};
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user