Merge pull request #1375 from offlinehacker/pkgs/bitcoin/altcoin_support
bitcoin: add support for altcoins, add litecoin, namecoin and dogecoin
This commit is contained in:
commit
39df234f65
|
@ -0,0 +1,100 @@
|
||||||
|
{ fetchurl, stdenv, pkgconfig
|
||||||
|
, openssl, db48, boost, zlib, miniupnpc, qt4, qrencode, glib, protobuf, utillinux }:
|
||||||
|
|
||||||
|
with stdenv.lib;
|
||||||
|
|
||||||
|
let
|
||||||
|
buildAltcoin = makeOverridable ({walletName, gui ? true, ...}@a:
|
||||||
|
stdenv.mkDerivation ({
|
||||||
|
name = "${walletName}${toString (optional (!gui) "d")}-${a.version}";
|
||||||
|
buildInputs = [ openssl db48 boost zlib miniupnpc ]
|
||||||
|
++ optionals gui [ qt4 qrencode ] ++ a.extraBuildInputs or [];
|
||||||
|
|
||||||
|
configurePhase = optional gui "qmake";
|
||||||
|
|
||||||
|
preBuild = optional (!gui) "cd src";
|
||||||
|
makefile = optional (!gui) "makefile.unix";
|
||||||
|
|
||||||
|
installPhase = if gui then ''
|
||||||
|
install -D "${walletName}-qt" "$out/bin/${walletName}-qt"
|
||||||
|
'' else ''
|
||||||
|
install -D "${walletName}d" "$out/bin/${walletName}d"
|
||||||
|
'';
|
||||||
|
|
||||||
|
passthru.walletName = walletName;
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
platforms = platforms.unix;
|
||||||
|
license = license.mit;
|
||||||
|
maintainers = [ maintainers.offline ];
|
||||||
|
};
|
||||||
|
} // a)
|
||||||
|
);
|
||||||
|
|
||||||
|
in rec {
|
||||||
|
inherit buildAltcoin;
|
||||||
|
|
||||||
|
litecoin = buildAltcoin rec {
|
||||||
|
walletName = "litecoin";
|
||||||
|
version = "0.8.5.3-rc3";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "https://github.com/litecoin-project/litecoin/archive/v${version}.tar.gz";
|
||||||
|
sha256 = "1z4a7bm3z9kd7n0s38kln31z8shsd32d5d5v3br5p0jlnr5g3lk7";
|
||||||
|
};
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Litecoin is a lite version of Bitcoin using scrypt as a proof-of-work algorithm.";
|
||||||
|
longDescription= ''
|
||||||
|
Litecoin is a peer-to-peer Internet currency that enables instant payments
|
||||||
|
to anyone in the world. It is based on the Bitcoin protocol but differs
|
||||||
|
from Bitcoin in that it can be efficiently mined with consumer-grade hardware.
|
||||||
|
Litecoin provides faster transaction confirmations (2.5 minutes on average)
|
||||||
|
and uses a memory-hard, scrypt-based mining proof-of-work algorithm to target
|
||||||
|
the regular computers and GPUs most people already have.
|
||||||
|
The Litecoin network is scheduled to produce 84 million currency units.
|
||||||
|
'';
|
||||||
|
homepage = https://litecoin.org/;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
litecoind = litecoin.override { gui = false; };
|
||||||
|
|
||||||
|
namecoin = buildAltcoin rec {
|
||||||
|
walletName = "namecoin";
|
||||||
|
version = "0.3.51.00";
|
||||||
|
gui = false;
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "https://github.com/namecoin/namecoin/archive/nc${version}.tar.gz";
|
||||||
|
sha256 = "0r6zjzichfjzhvpdy501gwy9h3zvlla3kbgb38z1pzaa0ld9siyx";
|
||||||
|
};
|
||||||
|
|
||||||
|
patches = [ ./namecoin_dynamic.patch ];
|
||||||
|
|
||||||
|
extraBuildInputs = [ glib ];
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Namecoin is a decentralized key/value registration and transfer system based on Bitcoin technology.";
|
||||||
|
homepage = http://namecoin.info;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
dogecoin = buildAltcoin rec {
|
||||||
|
walletName = "dogecoin";
|
||||||
|
version = "1.4";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "https://github.com/dogecoin/dogecoin/archive/1.4.tar.gz";
|
||||||
|
sha256 = "4af983f182976c98f0e32d525083979c9509b28b7d6faa0b90c5bd40b71009cc";
|
||||||
|
};
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Wow, such coin, much shiba, very rich";
|
||||||
|
longDescription = "wow";
|
||||||
|
homepage = http://www.dogecoin.com/;
|
||||||
|
maintainers = [ maintainers.offline maintainers.edwtjo ];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
dogecoind = dogecoin.override { gui = false; };
|
||||||
|
|
||||||
|
}
|
|
@ -1,19 +1,21 @@
|
||||||
{ fetchurl, stdenv, openssl, db48, boost, zlib, miniupnpc, qt4, utillinux
|
{ fetchurl, stdenv, openssl, db48, boost, zlib, miniupnpc, qt4, utillinux
|
||||||
, pkgconfig, protobuf, qrencode }:
|
, pkgconfig, protobuf, qrencode, gui ? true }:
|
||||||
|
|
||||||
|
with stdenv.lib;
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
version = "0.9.2.1";
|
version = "0.9.2.1";
|
||||||
name = "bitcoin-${version}";
|
name = "bitcoin${toString (optional (!gui) "d")}-${version}";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://bitcoin.org/bin/${version}/${name}-linux.tar.gz";
|
url = "https://bitcoin.org/bin/${version}/bitcoin-${version}-linux.tar.gz";
|
||||||
sha256 = "0060f7d38b98113ab912d4c184000291d7f026eaf77ca5830deec15059678f54";
|
sha256 = "0060f7d38b98113ab912d4c184000291d7f026eaf77ca5830deec15059678f54";
|
||||||
};
|
};
|
||||||
|
|
||||||
# hexdump from utillinux is required for tests
|
# hexdump from utillinux is required for tests
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
openssl db48 boost zlib miniupnpc qt4 utillinux pkgconfig protobuf qrencode
|
openssl db48 boost zlib miniupnpc utillinux pkgconfig protobuf
|
||||||
];
|
] ++ optionals gui [ qt4 qrencode ];
|
||||||
|
|
||||||
unpackPhase = ''
|
unpackPhase = ''
|
||||||
mkdir tmp-extract && (cd tmp-extract && tar xf $src)
|
mkdir tmp-extract && (cd tmp-extract && tar xf $src)
|
||||||
|
@ -34,6 +36,8 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
|
passthru.walletName = "bitcoin";
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "Peer-to-peer electronic cash system";
|
description = "Peer-to-peer electronic cash system";
|
||||||
longDescription= ''
|
longDescription= ''
|
||||||
|
@ -43,7 +47,7 @@ stdenv.mkDerivation rec {
|
||||||
with each other, with the help of a P2P network to check for double-spending.
|
with each other, with the help of a P2P network to check for double-spending.
|
||||||
'';
|
'';
|
||||||
homepage = "http://www.bitcoin.org/";
|
homepage = "http://www.bitcoin.org/";
|
||||||
maintainers = [ stdenv.lib.maintainers.roconnor ];
|
maintainers = [ maintainers.roconnor ];
|
||||||
license = stdenv.lib.licenses.mit;
|
license = licenses.mit;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,11 @@
|
||||||
|
diff -u -r a/src/makefile.unix b/src/makefile.unix
|
||||||
|
--- a/src/makefile.unix 2014-01-22 22:07:59.801601964 -0800
|
||||||
|
+++ b/src/makefile.unix 2014-01-22 22:08:07.980332839 -0800
|
||||||
|
@@ -12,7 +12,6 @@
|
||||||
|
|
||||||
|
# for boost 1.37, add -mt to the boost libraries
|
||||||
|
LIBS= \
|
||||||
|
- -Wl,-Bstatic \
|
||||||
|
-l boost_system \
|
||||||
|
-l boost_filesystem \
|
||||||
|
-l boost_program_options \
|
|
@ -8275,7 +8275,12 @@ let
|
||||||
|
|
||||||
bibletime = callPackage ../applications/misc/bibletime { };
|
bibletime = callPackage ../applications/misc/bibletime { };
|
||||||
|
|
||||||
bitcoin = callPackage ../applications/misc/bitcoin { };
|
bitcoin = callPackage ../applications/misc/bitcoin {};
|
||||||
|
bitcoind = callPackage ../applications/misc/bitcoin { gui = false; };
|
||||||
|
|
||||||
|
altcoins = recurseIntoAttrs (
|
||||||
|
callPackage ../applications/misc/bitcoin/altcoins.nix {}
|
||||||
|
);
|
||||||
|
|
||||||
bitlbee = callPackage ../applications/networking/instant-messengers/bitlbee {
|
bitlbee = callPackage ../applications/networking/instant-messengers/bitlbee {
|
||||||
gnutls = gnutls;
|
gnutls = gnutls;
|
||||||
|
|
Loading…
Reference in New Issue