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: 14f9ee66e630
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: 24a7883c2349
Choose a head ref
  • 2 commits
  • 1 file changed
  • 1 contributor

Commits on Sep 29, 2018

  1. bitcoin: 0.15.0.1 -> 0.15.2

    Fixes DoS vulnerability CVE-2018-17144.
    roconnor committed Sep 29, 2018
    Copy the full SHA
    d47ecce View commit details
  2. Merge pull request #47528 from roconnor/bitcoin

    bitcoin: 0.15.0.1 -> 0.15.2
    roconnor authored Sep 29, 2018
    Copy the full SHA
    24a7883 View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/applications/altcoins/bitcoin.nix
4 changes: 2 additions & 2 deletions pkgs/applications/altcoins/bitcoin.nix
Original file line number Diff line number Diff line change
@@ -5,11 +5,11 @@
with stdenv.lib;
stdenv.mkDerivation rec{
name = "bitcoin" + (toString (optional (!withGui) "d")) + "-" + version;
version = "0.15.0.1";
version = "0.15.2";

src = fetchurl {
url = "https://bitcoin.org/bin/bitcoin-core-${version}/bitcoin-${version}.tar.gz";
sha256 = "16si3skhm6jhw1pkniv2b9y1kkdhjmhj392palphir0qc1srwzmm";
sha256 = "0lbbvzf8v1665kjqqsc7prjqswmhyr56fgyckm2q5fix6ya2vgx1";
};

nativeBuildInputs = [ pkgconfig autoreconfHook ];