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: 73c64f0f3889
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: b7b7ed9d59b6
Choose a head ref
  • 2 commits
  • 1 file changed
  • 1 contributor

Commits on Oct 14, 2019

  1. Copy the full SHA
    da4a064 View commit details
  2. Merge pull request #71121 from mmahut/jormungandr

    jormungandr: 0.5.6 -> 0.6.0-rc1+1
    mmahut authored Oct 14, 2019
    Copy the full SHA
    b7b7ed9 View commit details
Showing with 4 additions and 4 deletions.
  1. +4 −4 pkgs/applications/blockchains/jormungandr/default.nix
8 changes: 4 additions & 4 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.5.6";
version = "0.6.0-rc1+1";

src = fetchgit {
url = "https://github.com/input-output-hk/${pname}";
rev = "v${version}+lock";
sha256 = "0l6rxr1xjp5hfkf0qfx8qsa1slxn0ly28akci1rwgdhlzjn43zqr";
rev = "v${version}";
sha256 = "0vwb6f9qx1w0iv1zblmdhlp9q6c7rl3wbf65wvb3nn4cdwygimv8";
fetchSubmodules = true;
};

cargoSha256 = "0590gsghr25bzfmxfyrpg58a0l77y88jwnrkgjxf06x3d66kkn3l";
cargoSha256 = "0pflam5am760z4pz3j1ga4arsixmay2487sgpqrhrkiaws4nxy57";

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