altcoins.dero: init at 0.11.3
This commit is contained in:
parent
e05a05e0a7
commit
41b3a76711
@ -26,6 +26,8 @@ rec {
|
|||||||
|
|
||||||
dashpay = callPackage ./dashpay.nix { };
|
dashpay = callPackage ./dashpay.nix { };
|
||||||
|
|
||||||
|
dero = callPackage ./dero.nix { };
|
||||||
|
|
||||||
dogecoin = callPackage ./dogecoin.nix { withGui = true; };
|
dogecoin = callPackage ./dogecoin.nix { withGui = true; };
|
||||||
dogecoind = callPackage ./dogecoin.nix { withGui = false; };
|
dogecoind = callPackage ./dogecoin.nix { withGui = false; };
|
||||||
|
|
||||||
|
27
pkgs/applications/altcoins/dero.nix
Normal file
27
pkgs/applications/altcoins/dero.nix
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
{ lib, stdenv, fetchFromGitHub, cmake, pkgconfig, unbound, openssl, boost
|
||||||
|
, libunwind, lmdb, miniupnpc, readline }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "dero-${version}";
|
||||||
|
version = "0.11.3";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "deroproject";
|
||||||
|
repo = "dero";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "0cv4yg2lkmkdhlc3753gnbg1nzldk2kxwdyizwhvanq3ycqban4b";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ cmake pkgconfig ];
|
||||||
|
buildInputs = [ boost miniupnpc openssl lmdb unbound readline ];
|
||||||
|
|
||||||
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Secure, private blockchain with smart contracts based on Monero";
|
||||||
|
homepage = "https://dero.io/";
|
||||||
|
license = licenses.bsd3;
|
||||||
|
maintainers = with maintainers; [ fpletz ];
|
||||||
|
platforms = platforms.linux;
|
||||||
|
};
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user