summary refs log tree commit diff
path: root/pkgs/applications/altcoins/bitcoin-classic.nix
diff options
context:
space:
mode:
authorDmitry Tsygankov <dmitry.tsygankov@gmail.com>2017-05-09 22:22:35 -0700
committerDmitry Tsygankov <dmitry.tsygankov@gmail.com>2017-05-09 22:22:35 -0700
commitb0dd2158b895873694725fe53c5fb00b7b311b0f (patch)
tree5e8c9c3895e1964431945bd059de5e3dde7a7c84 /pkgs/applications/altcoins/bitcoin-classic.nix
parentc6c7197c7dc5355ff587da9996330bb72afcb8f7 (diff)
downloadnixpkgs-b0dd2158b895873694725fe53c5fb00b7b311b0f.tar
nixpkgs-b0dd2158b895873694725fe53c5fb00b7b311b0f.tar.gz
nixpkgs-b0dd2158b895873694725fe53c5fb00b7b311b0f.tar.bz2
nixpkgs-b0dd2158b895873694725fe53c5fb00b7b311b0f.tar.lz
nixpkgs-b0dd2158b895873694725fe53c5fb00b7b311b0f.tar.xz
nixpkgs-b0dd2158b895873694725fe53c5fb00b7b311b0f.tar.zst
nixpkgs-b0dd2158b895873694725fe53c5fb00b7b311b0f.zip
bitcoin-classic: 1.2.3 -> 1.2.5
Diffstat (limited to 'pkgs/applications/altcoins/bitcoin-classic.nix')
-rw-r--r--pkgs/applications/altcoins/bitcoin-classic.nix16
1 files changed, 9 insertions, 7 deletions
diff --git a/pkgs/applications/altcoins/bitcoin-classic.nix b/pkgs/applications/altcoins/bitcoin-classic.nix
index 50a011e0057..1cb9a77785e 100644
--- a/pkgs/applications/altcoins/bitcoin-classic.nix
+++ b/pkgs/applications/altcoins/bitcoin-classic.nix
@@ -7,13 +7,13 @@ with stdenv.lib;
 stdenv.mkDerivation rec {
 
   name = "bitcoin" + (toString (optional (!withGui) "d")) + "-classic-" + version;
-  version = "1.2.3";
+  version = "1.2.5";
 
   src = fetchFromGitHub {
     owner = "bitcoinclassic";
     repo = "bitcoinclassic";
     rev = "v${version}";
-    sha256 = "0y99c8zv42ps3pxp46p3fqj9sir580v7s5qyi3cxva12mq2z0cql";
+    sha256 = "1z6g930csvx49krl34207yqwlr8dkxpi72k3msh15p1kjvv90nvz";
   };
 
   nativeBuildInputs = [ pkgconfig autoreconfHook ];
@@ -32,11 +32,13 @@ 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.
 
-      We call our code repository Bitcoin Classic. It starts as a one-feature patch
-      to bitcoin-core that increases the blocksize limit to 2 MB. We will have
-      ports for master and 0.11.2, so that miners and businesses can upgrade to 2 MB
-      blocks from any recent bitcoin software version they run. In the future we will
-      continue to release updates that are in line with Satoshi’s whitepaper &
+      Bitcoin Classic stands for the original Bitcoin as Satoshi described it, 
+      "A Peer-to-Peer Electronic Cash System". We are writing the software that 
+      miners and users say they want. We will make sure it solves their needs, help
+      them deploy it, and gracefully upgrade the bitcoin network's capacity 
+      together. The data shows that Bitcoin can grow, on-chain, to welcome many
+      more users onto our coin in a safe and distributed manner. In the future we 
+      will continue to release updates that are in line with Satoshi’s whitepaper &
       vision, and are agreed upon by the community.
     '';
     homepage = https://bitcoinclassic.com/;