about summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorR. RyanTM <ryantm+bot@ryantm.com>2018-06-19 17:15:26 -0700
committerR. RyanTM <ryantm+bot@ryantm.com>2018-06-19 17:15:26 -0700
commit77f3ac7b7638b33ab198330eaabbd6e0a2e751a9 (patch)
tree8f4ab8ffc1164d5c2e1069e0c869ea4f4a7930fe /pkgs/applications
parent4627f0719dcc73ccd10d421b05af35170324971d (diff)
downloadnixlib-77f3ac7b7638b33ab198330eaabbd6e0a2e751a9.tar
nixlib-77f3ac7b7638b33ab198330eaabbd6e0a2e751a9.tar.gz
nixlib-77f3ac7b7638b33ab198330eaabbd6e0a2e751a9.tar.bz2
nixlib-77f3ac7b7638b33ab198330eaabbd6e0a2e751a9.tar.lz
nixlib-77f3ac7b7638b33ab198330eaabbd6e0a2e751a9.tar.xz
nixlib-77f3ac7b7638b33ab198330eaabbd6e0a2e751a9.tar.zst
nixlib-77f3ac7b7638b33ab198330eaabbd6e0a2e751a9.zip
altcoins.bitcoin: 0.16.0 -> 0.16.1
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.

This update was made based on information from https://repology.org/metapackage/bitcoin/versions.

These checks were done:

- built on NixOS
- /nix/store/5fjv944ikyak1s83624ay8i9h4gbs2c0-bitcoin-0.16.1/bin/bitcoind passed the binary check.
- /nix/store/5fjv944ikyak1s83624ay8i9h4gbs2c0-bitcoin-0.16.1/bin/bitcoin-cli passed the binary check.
- /nix/store/5fjv944ikyak1s83624ay8i9h4gbs2c0-bitcoin-0.16.1/bin/bitcoin-tx passed the binary check.
- /nix/store/5fjv944ikyak1s83624ay8i9h4gbs2c0-bitcoin-0.16.1/bin/test_bitcoin passed the binary check.
- /nix/store/5fjv944ikyak1s83624ay8i9h4gbs2c0-bitcoin-0.16.1/bin/bench_bitcoin passed the binary check.
- Warning: no invocation of /nix/store/5fjv944ikyak1s83624ay8i9h4gbs2c0-bitcoin-0.16.1/bin/bitcoin-qt had a zero exit code or showed the expected version
- Warning: no invocation of /nix/store/5fjv944ikyak1s83624ay8i9h4gbs2c0-bitcoin-0.16.1/bin/test_bitcoin-qt had a zero exit code or showed the expected version
- 5 of 7 passed binary check by having a zero exit code.
- 0 of 7 passed binary check by having the new version present in output.
- found 0.16.1 with grep in /nix/store/5fjv944ikyak1s83624ay8i9h4gbs2c0-bitcoin-0.16.1
- directory tree listing: https://gist.github.com/a5e5d745910497ae913d4577342deba5
- du listing: https://gist.github.com/5f62bec50f6ab977a25c8ee0f118cb10
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/altcoins/bitcoin.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/altcoins/bitcoin.nix b/pkgs/applications/altcoins/bitcoin.nix
index 30bbcb2c8393..25f223d57441 100644
--- a/pkgs/applications/altcoins/bitcoin.nix
+++ b/pkgs/applications/altcoins/bitcoin.nix
@@ -5,13 +5,13 @@
 with stdenv.lib;
 stdenv.mkDerivation rec{
   name = "bitcoin" + (toString (optional (!withGui) "d")) + "-" + version;
-  version = "0.16.0";
+  version = "0.16.1";
 
   src = fetchurl {
     urls = [ "https://bitcoincore.org/bin/bitcoin-core-${version}/bitcoin-${version}.tar.gz"
              "https://bitcoin.org/bin/bitcoin-core-${version}/bitcoin-${version}.tar.gz"
            ];
-    sha256 = "0h7flgsfjzbqajwv8ih686yyxxljhf8krhm8jxranb4kglww1glc";
+    sha256 = "1zkqp93yircd3pbxczxfnibkpq0sgcv5r7wg6d196b9pwgr9zd39";
   };
 
   nativeBuildInputs = [ pkgconfig autoreconfHook ];