From 3b1116ad5928d9af87899239fbae4674580cb7da Mon Sep 17 00:00:00 2001 From: Marek Mahut Date: Tue, 13 Aug 2019 23:36:14 +0200 Subject: [PATCH 1/2] jormungandr: 0.3.1 -> 0.3.2 --- pkgs/applications/altcoins/jormungandr/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/altcoins/jormungandr/default.nix b/pkgs/applications/altcoins/jormungandr/default.nix index d58e05184b6..9b53628ee90 100644 --- a/pkgs/applications/altcoins/jormungandr/default.nix +++ b/pkgs/applications/altcoins/jormungandr/default.nix @@ -9,16 +9,16 @@ rustPlatform.buildRustPackage rec { pname = "jormungandr"; - version = "0.3.1"; + version = "0.3.2"; src = fetchgit { url = "https://github.com/input-output-hk/${pname}"; rev = "v${version}"; - sha256 = "0ys8sw73c7binxnl79dqi7sxva62bgifbhgyzvvjvmjjdxgq4kfp"; + sha256 = "0zlnl6a3i7x4basc4w31dwqbdign96kvd7j0vqk2v818ifjvpavd"; fetchSubmodules = true; }; - cargoSha256 = "0fphjzz78ym15qbka01idnq6vkyf4asrnhrhvxngwc3bifmnj937"; + cargoSha256 = "13zcbhhdf4xakp37r920xzcb0prdk58jlph9f3hwlp8npmcws52p"; nativeBuildInputs = [ pkgconfig protobuf rustup ]; buildInputs = [ openssl ]; From 95c6b4c8b49642fcec0916dc8d838a62b845f9cf Mon Sep 17 00:00:00 2001 From: Marek Mahut Date: Wed, 14 Aug 2019 08:49:36 +0200 Subject: [PATCH 2/2] jormungandr: Adding darwin.apple_sdk.frameworks.Security --- pkgs/applications/altcoins/jormungandr/default.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/applications/altcoins/jormungandr/default.nix b/pkgs/applications/altcoins/jormungandr/default.nix index 9b53628ee90..b0ceda6c333 100644 --- a/pkgs/applications/altcoins/jormungandr/default.nix +++ b/pkgs/applications/altcoins/jormungandr/default.nix @@ -1,10 +1,12 @@ { stdenv +, lib , fetchgit , rustPlatform , openssl , pkgconfig , protobuf , rustup +, darwin }: rustPlatform.buildRustPackage rec { @@ -21,7 +23,7 @@ rustPlatform.buildRustPackage rec { cargoSha256 = "13zcbhhdf4xakp37r920xzcb0prdk58jlph9f3hwlp8npmcws52p"; nativeBuildInputs = [ pkgconfig protobuf rustup ]; - buildInputs = [ openssl ]; + buildInputs = [ openssl ] ++ lib.optionals stdenv.isDarwin [ darwin.apple_sdk.frameworks.Security ]; PROTOC = "${protobuf}/bin/protoc";