Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: cc997f28d154
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: d2c9469ef75d
Choose a head ref
  • 2 commits
  • 1 file changed
  • 1 contributor

Commits on Oct 19, 2019

  1. jormungandr: 0.6.1 -> 0.6.5

    mmahut committed Oct 19, 2019
    Copy the full SHA
    f2b29c1 View commit details
  2. Merge pull request #71384 from mmahut/jormungandr

    jormungandr: 0.6.1 -> 0.6.5
    mmahut authored Oct 19, 2019
    Copy the full SHA
    d2c9469 View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 pkgs/applications/blockchains/jormungandr/default.nix
6 changes: 3 additions & 3 deletions pkgs/applications/blockchains/jormungandr/default.nix
Original file line number Diff line number Diff line change
@@ -10,16 +10,16 @@

rustPlatform.buildRustPackage rec {
pname = "jormungandr";
version = "0.6.1";
version = "0.6.5";

src = fetchgit {
url = "https://github.com/input-output-hk/${pname}";
rev = "v${version}";
sha256 = "1w0xcx1h09wv25qdyybamxxl8sqd2npja12n3vpvz0sgv88c3mix";
sha256 = "16s6ks63194w35xlgzbhjdb3h606hkj049bap52sd6qf637bw2p7";
fetchSubmodules = true;
};

cargoSha256 = "0pflam5am760z4pz3j1ga4arsixmay2487sgpqrhrkiaws4nxy57";
cargoSha256 = "1kba65rnm2vyqsjhcnfwy1m44x1w3xxlzinykmb89jy6qr8gvp42";

nativeBuildInputs = [ pkgconfig protobuf ];
buildInputs = [ openssl ] ++ lib.optionals stdenv.isDarwin [ darwin.apple_sdk.frameworks.Security ];