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

Commits on Mar 2, 2018

  1. ethabi: 1.0.4 -> 4.1.0

    adisbladis committed Mar 2, 2018
    Copy the full SHA
    7e39f46 View commit details
  2. seth: 0.6.2 -> 0.6.3

    adisbladis committed Mar 2, 2018
    Copy the full SHA
    11d6ada View commit details
Showing with 6 additions and 6 deletions.
  1. +4 −4 pkgs/applications/altcoins/ethabi.nix
  2. +2 −2 pkgs/applications/altcoins/seth.nix
8 changes: 4 additions & 4 deletions pkgs/applications/altcoins/ethabi.nix
Original file line number Diff line number Diff line change
@@ -4,16 +4,16 @@ with rustPlatform;

buildRustPackage rec {
name = "ethabi-${version}";
version = "1.0.4";
version = "4.1.0";

src = fetchFromGitHub {
owner = "paritytech";
repo = "ethabi";
rev = "18ddc983d77b2a97e6c322abcc23bec59940d65f";
sha256 = "1rg7ydvnhlg8w6blilm3cv6v4q51x1hgrbkln2ikhpdq0vakp5fd";
rev = "v${version}";
sha256 = "0kxflixmgycdh7sv73zf2mrkbcfzzw7f5sjbsjks9crc9cvjqi6p";
};

cargoSha256 = "0i9617qwc6d4jvlbydwk03rcsnyvxzpbn2ms10ds4r6x7jy2a4sy";
cargoSha256 = "18rigpsmfiv6im2sspnxadgqrlfdp9dd75ji8s56ksc9g7hrc3wz";

cargoBuildFlags = ["--features cli"];

4 changes: 2 additions & 2 deletions pkgs/applications/altcoins/seth.nix
Original file line number Diff line number Diff line change
@@ -5,13 +5,13 @@

stdenv.mkDerivation rec {
name = "seth-${version}";
version = "0.6.2";
version = "0.6.3";

src = fetchFromGitHub {
owner = "dapphub";
repo = "seth";
rev = "v${version}";
sha256 = "1lbr7i3rznfp3h03y7pc094r0m992lbzr926rnr0xxbyp755wvm4";
sha256 = "0la2nfqsscpbq6zwa6hsd73nimdnrhilrmgyy77yr3jca2wjhsjk";
};

nativeBuildInputs = [makeWrapper];