about summary refs log tree commit diff
path: root/pkgs/applications/misc
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2012-06-28 18:03:56 +0200
committerPeter Simons <simons@cryp.to>2012-06-28 18:04:29 +0200
commit6e936640b0251c01d615b8f10f4c5693de5ee7cb (patch)
treea0d702fc4cce5f4025e1946fd2f8c0fbcf624f31 /pkgs/applications/misc
parent99c765ff57c7aeb84895801d90374c9f7f9b4d70 (diff)
downloadnixlib-6e936640b0251c01d615b8f10f4c5693de5ee7cb.tar
nixlib-6e936640b0251c01d615b8f10f4c5693de5ee7cb.tar.gz
nixlib-6e936640b0251c01d615b8f10f4c5693de5ee7cb.tar.bz2
nixlib-6e936640b0251c01d615b8f10f4c5693de5ee7cb.tar.lz
nixlib-6e936640b0251c01d615b8f10f4c5693de5ee7cb.tar.xz
nixlib-6e936640b0251c01d615b8f10f4c5693de5ee7cb.tar.zst
nixlib-6e936640b0251c01d615b8f10f4c5693de5ee7cb.zip
bitcoin: update to version 0.6.3 (and build with boost 1.50.0)
Diffstat (limited to 'pkgs/applications/misc')
-rw-r--r--pkgs/applications/misc/bitcoin/default.nix18
1 files changed, 9 insertions, 9 deletions
diff --git a/pkgs/applications/misc/bitcoin/default.nix b/pkgs/applications/misc/bitcoin/default.nix
index d9f5a8924878..63f4f77942af 100644
--- a/pkgs/applications/misc/bitcoin/default.nix
+++ b/pkgs/applications/misc/bitcoin/default.nix
@@ -1,12 +1,12 @@
 { fetchurl, stdenv, openssl, db4, boost, zlib, miniupnpc, qt4 }:
 
 stdenv.mkDerivation rec {
-  version = "0.6.2";
+  version = "0.6.3";
   name = "bitcoin-${version}";
 
   src = fetchurl {
-    url = "mirror://sourceforge/bitcoin/bitcoin-0.6.2-linux.tar.gz";
-    sha256 = "0yhgqz98hmmn6ljk23rd48jsjfvzdii27370vazhbgvjwj8giais";
+    url = "mirror://sourceforge/bitcoin/${name}-linux.tar.gz";
+    sha256 = "722d4209ff4a951a9eb5cae26a33ad62770fdcb5dfb5acf0b5c6a8f6f3a8a0ef";
   };
 
   buildInputs = [ openssl db4 boost zlib miniupnpc qt4 ];
@@ -21,13 +21,13 @@ stdenv.mkDerivation rec {
     cp bitcoin-qt $out/bin
   '';
 
-  meta = { 
+  meta = {
       description = "Bitcoin is a peer-to-peer currency";
-      longDescription=''
-Bitcoin is a free open source peer-to-peer electronic cash system that is
-completely decentralized, without the need for a central server or trusted
-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.
+      longDescription= ''
+        Bitcoin is a free open source peer-to-peer electronic cash system that is
+        completely decentralized, without the need for a central server or trusted
+        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/";
       maintainers = [ stdenv.lib.maintainers.roconnor ];