summary refs log tree commit diff
path: root/pkgs/applications/misc/bitcoin/altcoins.nix
blob: 2643094e2f163df6b2a0bce13343449f48e8baad (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{ fetchurl, stdenv, pkgconfig
, openssl, db48, boost, zlib, miniupnpc, qt4, qrencode, glib, protobuf
, utillinux, autogen, autoconf, autobuild, automake, db }:

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;
    };
  };

}