about summary refs log tree commit diff
path: root/pkgs/servers/rippled/default.nix
blob: ca0a331e32126dc5fa75df12ff148697b3a0d011 (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
{ stdenv, fetchFromGitHub, scons, pkgconfig, openssl, protobuf, boost, zlib}:

stdenv.mkDerivation rec {
  name = "rippled-${version}";
  version = "0.26.0";

  src = fetchFromGitHub {
    owner = "ripple";
    repo = "rippled";
    rev = "0.26.2";
    sha256 = "06hcc3nnzp9f6j00890f41rrn4djwlcwkzmqnw4yra74sswgji5y";
  };

  postPatch = ''
    sed -i -e "s@ENV = dict.*@ENV = os.environ@g" SConstruct
  '';

  buildInputs = [ scons pkgconfig openssl protobuf boost zlib ];

  buildPhase = "scons build/rippled";

  installPhase = ''
    mkdir -p $out/bin    
    cp build/rippled $out/bin/
  '';

  meta = {
    description = "Ripple P2P payment network reference server";
    homepage = https://ripple.com;
    maintainers = [ stdenv.lib.maintainers.emery ];
    license = stdenv.lib.licenses.isc;
    platforms = stdenv.lib.platforms.linux;
  };
}