nixpkgs/pkgs/applications/blockchains/stellar-core/default.nix
2023-11-27 02:17:53 +01:00

77 lines
1.7 KiB
Nix

{ autoconf
, automake
, bison
, fetchFromGitHub
, flex
, git
, lib
, libtool
, libunwind
, pkg-config
, postgresql
, ripgrep
, stdenv
}:
stdenv.mkDerivation (finalAttrs: {
pname = "stellar-core";
version = "19.14.0";
src = fetchFromGitHub {
owner = "stellar";
repo = "stellar-core";
rev = "v${finalAttrs.version}";
hash = "sha256-lxBn/T01Tsa7tid3mRJUigUwv9d3BAPZhV9Mp1lywBU=";
fetchSubmodules = true;
};
nativeBuildInputs = [
automake
autoconf
git
libtool
pkg-config
ripgrep
];
buildInputs = [
libunwind
];
propagatedBuildInputs = [
bison
flex
postgresql
];
enableParallelBuilding = true;
preConfigure = ''
# Due to https://github.com/NixOS/nixpkgs/issues/8567 we cannot rely on
# having the .git directory present, so directly provide the version
substituteInPlace src/Makefile.am --replace '$$vers' 'stellar-core ${finalAttrs.version}';
# Everything needs to be staged in git because the build uses
# `git ls-files` to search for source files to compile.
git init
git add .
./autogen.sh
'';
meta = {
description = "Implements the Stellar Consensus Protocol, a federated consensus protocol";
homepage = "https://www.stellar.org/";
license = lib.licenses.asl20;
longDescription = ''
Stellar-core is the backbone of the Stellar network. It maintains a
local copy of the ledger, communicating and staying in sync with other
instances of stellar-core on the network. Optionally, stellar-core can
store historical records of the ledger and participate in consensus.
'';
maintainers = [ ];
platforms = lib.platforms.linux;
mainProgram = "stellar-core";
};
})