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: 5f7c44974175
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 8277fb4d76a1
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on May 9, 2020

  1. bitcoin: 0.19.0.1 -> 0.19.1

    prusnak authored and bjornfor committed May 9, 2020
    Copy the full SHA
    8277fb4 View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 pkgs/applications/blockchains/bitcoin.nix
6 changes: 3 additions & 3 deletions pkgs/applications/blockchains/bitcoin.nix
Original file line number Diff line number Diff line change
@@ -5,7 +5,7 @@
with stdenv.lib;

let
version = "0.19.0.1";
version = "0.19.1";
majorMinorVersion = versions.majorMinor version;

desktop = fetchurl {
@@ -26,7 +26,7 @@ in stdenv.mkDerivation rec {
urls = [ "https://bitcoincore.org/bin/bitcoin-core-${version}/bitcoin-${version}.tar.gz"
"https://bitcoin.org/bin/bitcoin-core-${version}/bitcoin-${version}.tar.gz"
];
sha256 = "7ac9f972249a0a16ed01352ca2a199a5448fe87a4ea74923404a40b4086de284";
sha256 = "f2591d555b8e8c2e1bd780e40d53a91e165d8b3c7e0391ae2d24a0c0f23a7cc0";
};

nativeBuildInputs =
@@ -73,7 +73,7 @@ in stdenv.mkDerivation rec {
parties. Users hold the crypto keys to their own money and transact directly
with each other, with the help of a P2P network to check for double-spending.
'';
homepage = "http://www.bitcoin.org/";
homepage = "https://bitcoin.org/";
maintainers = with maintainers; [ roconnor AndersonTorres ];
license = licenses.mit;
platforms = platforms.unix;