summary refs log tree commit diff
path: root/pkgs/applications/blockchains/freicoin.nix
blob: cc28fff96c47ab4b9fdd467e60b3c1130af19041 (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
{ fetchFromGitHub, stdenv, db, boost, gmp, mpfr, qt4, qmake4Hook }:

stdenv.mkDerivation rec {
  version = "0.8.6-2";
  pname = "freicoin";

  src = fetchFromGitHub {
    owner = "freicoin";
    repo = "freicoin";
    rev = "v${version}";
    sha256 = "1v1qwv4x5agjba82s1vknmdgq67y26wzdwbmwwqavv7f7y3y860h";
  };

  enableParallelBuilding = false;

  qmakeFlags = ["USE_UPNP=-"];

  # I think that openssl and zlib are required, but come through other
  # packages

  preBuild = "unset AR";

  installPhase = ''
    mkdir -p $out/bin
    cp freicoin-qt $out/bin
  '';

  nativeBuildInputs = [ qmake4Hook ];
  buildInputs = [ db boost gmp mpfr qt4 ];

  meta = with stdenv.lib; {
    description = "Peer-to-peer currency with demurrage fee";
    homepage = "http://freicoi.in/";
    license = licenses.mit;
    maintainers = [ maintainers.viric ];
    platforms = platforms.linux;

    # upstream doesn't support newer openssl versions, use 1.0.1 for testing
    broken = true;
  };
}