Skip to content
This repository was archived by the owner on Apr 12, 2021. It is now read-only.
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-channels
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 6d7145b96666
Choose a base ref
...
head repository: NixOS/nixpkgs-channels
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: a1f82db35130
Choose a head ref
  • 3 commits
  • 2 files changed
  • 3 contributors

Commits on Nov 27, 2019

  1. go-ethereum: 1.9.7 -> 1.9.8

    xrelkd committed Nov 27, 2019
    Copy the full SHA
    1e042e9 View commit details
  2. Merge pull request #74299 from xrelkd/update/go-ethereum

    go-ethereum: 1.9.7 -> 1.9.8
    adisbladis authored Nov 27, 2019
    Copy the full SHA
    008da72 View commit details
  3. purescript: 0.13.4 -> 0.13.5

    mbbx6spp authored and Jon committed Nov 27, 2019
    Copy the full SHA
    a1f82db View commit details
Showing with 30 additions and 13 deletions.
  1. +27 −10 pkgs/applications/blockchains/go-ethereum.nix
  2. +3 −3 pkgs/development/compilers/purescript/purescript/default.nix
37 changes: 27 additions & 10 deletions pkgs/applications/blockchains/go-ethereum.nix
Original file line number Diff line number Diff line change
@@ -1,22 +1,39 @@
{ stdenv, buildGoPackage, fetchFromGitHub, libobjc, IOKit }:
{ stdenv, buildGoModule, fetchFromGitHub, libobjc, IOKit }:

buildGoPackage rec {
buildGoModule rec {
pname = "go-ethereum";
version = "1.9.7";

goPackagePath = "github.com/ethereum/go-ethereum";

# Fix for usb-related segmentation faults on darwin
propagatedBuildInputs =
stdenv.lib.optionals stdenv.isDarwin [ libobjc IOKit ];
version = "1.9.8";

src = fetchFromGitHub {
owner = "ethereum";
repo = pname;
rev = "v${version}";
sha256 = "07110dj91wmkpwz7iy0lmxx3y9wjxjrhk3rhkfdil74cxm0wkkn2";
sha256 = "0v4hchy6h3282347ps11iv7klcr60bmghha78rnp0iqpx2k8pqb4";
};

modSha256 = "1l10p6a4qq77pfx7jmipkcg2qg6w3hg83q5a37yid3apily2scfa";

subPackages = [
"cmd/abigen"
"cmd/bootnode"
"cmd/checkpoint-admin"
"cmd/clef"
"cmd/devp2p"
"cmd/ethkey"
"cmd/evm"
"cmd/faucet"
"cmd/geth"
"cmd/p2psim"
"cmd/puppeth"
"cmd/rlpdump"
"cmd/utils"
"cmd/wnode"
];

# Fix for usb-related segmentation faults on darwin
propagatedBuildInputs =
stdenv.lib.optionals stdenv.isDarwin [ libobjc IOKit ];

meta = with stdenv.lib; {
homepage = "https://geth.ethereum.org/";
description = "Official golang implementation of the Ethereum protocol";
6 changes: 3 additions & 3 deletions pkgs/development/compilers/purescript/purescript/default.nix
Original file line number Diff line number Diff line change
@@ -18,19 +18,19 @@ let

in stdenv.mkDerivation rec {
pname = "purescript";
version = "0.13.4";
version = "0.13.5";

src =
if stdenv.isDarwin
then
fetchurl {
url = "https://github.com/${pname}/${pname}/releases/download/v${version}/macos.tar.gz";
sha256 = "0rqjair1r1yr1k8rva3ly16dv5594f4s8xwpnrz9n7x3f99mk4fx";
sha256 = "19bb50m0cd738r353blgy21d842b3yj58xfbplk7bz59jawj9lym";
}
else
fetchurl {
url = "https://github.com/${pname}/${pname}/releases/download/v${version}/linux64.tar.gz";
sha256 = "1ajzi5ikgzgdfrgq36r9pc3yc6f7h0qgnqcq414zd66z08mbggng";
sha256 = "016wvwypgb4859f0n1lqsqv9a8cca2y8g7d6ffvzx6rncd115gxi";
};