Merge pull request #66589 from mmahut/jormungandr

jormungandr: 0.3.1 -> 0.3.2
This commit is contained in:
Aaron Andersen 2019-08-19 16:34:33 -04:00 committed by GitHub
commit bc60a77b05
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,27 +1,29 @@
{ stdenv { stdenv
, lib
, fetchgit , fetchgit
, rustPlatform , rustPlatform
, openssl , openssl
, pkgconfig , pkgconfig
, protobuf , protobuf
, rustup , rustup
, darwin
}: }:
rustPlatform.buildRustPackage rec { rustPlatform.buildRustPackage rec {
pname = "jormungandr"; pname = "jormungandr";
version = "0.3.1"; version = "0.3.2";
src = fetchgit { src = fetchgit {
url = "https://github.com/input-output-hk/${pname}"; url = "https://github.com/input-output-hk/${pname}";
rev = "v${version}"; rev = "v${version}";
sha256 = "0ys8sw73c7binxnl79dqi7sxva62bgifbhgyzvvjvmjjdxgq4kfp"; sha256 = "0zlnl6a3i7x4basc4w31dwqbdign96kvd7j0vqk2v818ifjvpavd";
fetchSubmodules = true; fetchSubmodules = true;
}; };
cargoSha256 = "0fphjzz78ym15qbka01idnq6vkyf4asrnhrhvxngwc3bifmnj937"; cargoSha256 = "13zcbhhdf4xakp37r920xzcb0prdk58jlph9f3hwlp8npmcws52p";
nativeBuildInputs = [ pkgconfig protobuf rustup ]; nativeBuildInputs = [ pkgconfig protobuf rustup ];
buildInputs = [ openssl ]; buildInputs = [ openssl ] ++ lib.optionals stdenv.isDarwin [ darwin.apple_sdk.frameworks.Security ];
PROTOC = "${protobuf}/bin/protoc"; PROTOC = "${protobuf}/bin/protoc";