Merge pull request #65513 from mmahut/jormungandr

jormungandr: init at 0.3.1
This commit is contained in:
Aaron Andersen 2019-07-31 22:00:58 -04:00 committed by GitHub
commit 95c2752835
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 40 additions and 0 deletions

View file

@ -0,0 +1,38 @@
{ stdenv
, fetchgit
, rustPlatform
, openssl
, pkgconfig
, protobuf
, rustup
}:
rustPlatform.buildRustPackage rec {
pname = "jormungandr";
version = "0.3.1";
src = fetchgit {
url = "https://github.com/input-output-hk/${pname}";
rev = "v${version}";
sha256 = "0ys8sw73c7binxnl79dqi7sxva62bgifbhgyzvvjvmjjdxgq4kfp";
fetchSubmodules = true;
};
cargoSha256 = "0fphjzz78ym15qbka01idnq6vkyf4asrnhrhvxngwc3bifmnj937";
nativeBuildInputs = [ pkgconfig protobuf rustup ];
buildInputs = [ openssl ];
PROTOC = "${protobuf}/bin/protoc";
# Disabling integration tests
doCheck = false;
meta = with stdenv.lib; {
description = "An aspiring blockchain node";
homepage = "https://input-output-hk.github.io/jormungandr/";
license = licenses.mit;
maintainers = [ maintainers.mmahut ];
platforms = platforms.all;
};
}

View file

@ -18833,6 +18833,8 @@ in
josm = callPackage ../applications/misc/josm { };
jormungandr = callPackage ../applications/altcoins/jormungandr { };
jbrout = callPackage ../applications/graphics/jbrout { };
jwm = callPackage ../applications/window-managers/jwm { };