mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
28 lines
769 B
Nix
28 lines
769 B
Nix
{ lib, stdenv, fetchFromGitHub, cmake, pkgconfig, unbound, openssl, boost
|
|
, libunwind, lmdb, miniupnpc, readline }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "dero-${version}";
|
|
version = "0.11.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "deroproject";
|
|
repo = "dero";
|
|
rev = "v${version}";
|
|
sha256 = "0jc5rh2ra4wra04dwv9sydid5ij5930s38mhzq3qkdjyza1ahmsr";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|