forked from mirrors/nixpkgs
rippled: update to 0.27.3-sp2
This commit is contained in:
parent
decf15fd57
commit
12fde06cdd
|
@ -2,13 +2,13 @@
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "rippled-${version}";
|
name = "rippled-${version}";
|
||||||
version = "0.26.0";
|
version = "0.27.3-sp2";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "ripple";
|
owner = "ripple";
|
||||||
repo = "rippled";
|
repo = "rippled";
|
||||||
rev = "0.26.2";
|
rev = version;
|
||||||
sha256 = "06hcc3nnzp9f6j00890f41rrn4djwlcwkzmqnw4yra74sswgji5y";
|
sha256 = "1q4i87cc7yks9slpgrfnlimngm45n3h035ssjvywmfwhhh7r9m3y";
|
||||||
};
|
};
|
||||||
|
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
|
@ -20,15 +20,15 @@ stdenv.mkDerivation rec {
|
||||||
buildPhase = "scons build/rippled";
|
buildPhase = "scons build/rippled";
|
||||||
|
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
mkdir -p $out/bin
|
mkdir -p $out/bin
|
||||||
cp build/rippled $out/bin/
|
cp build/rippled $out/bin/
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
description = "Ripple P2P payment network reference server";
|
description = "Ripple P2P payment network reference server";
|
||||||
homepage = https://ripple.com;
|
homepage = https://ripple.com;
|
||||||
maintainers = [ stdenv.lib.maintainers.emery ];
|
maintainers = [ maintainers.emery maintainers.offline ];
|
||||||
license = stdenv.lib.licenses.isc;
|
license = licenses.isc;
|
||||||
platforms = stdenv.lib.platforms.linux;
|
platforms = platforms.linux;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue