2021-01-10 12:06:36 +00:00
|
|
|
{ lib
|
2021-09-20 21:31:09 +01:00
|
|
|
, stdenv
|
2021-01-10 12:06:36 +00:00
|
|
|
, rustPlatform
|
|
|
|
, fetchFromGitHub
|
|
|
|
, llvmPackages
|
2021-09-20 18:13:53 +01:00
|
|
|
, rocksdb
|
2021-09-20 21:31:09 +01:00
|
|
|
, Security
|
2021-01-10 12:06:36 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "electrs";
|
2021-09-20 21:31:09 +01:00
|
|
|
version = "0.9.0";
|
2021-01-10 12:06:36 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "romanz";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2021-09-20 21:31:09 +01:00
|
|
|
sha256 = "04dqbn2nfzllxfcn3v9vkfy2hn2syihijr575621r1pj65pcgf8y";
|
2021-01-10 12:06:36 +00:00
|
|
|
};
|
|
|
|
|
2021-09-20 21:31:09 +01:00
|
|
|
cargoSha256 = "0hl8q62lankrab8gq9vxmkn68drs0hw5pk0q6aiq8fxsb63dzsw0";
|
2021-09-20 18:12:30 +01:00
|
|
|
|
2021-01-10 12:06:36 +00:00
|
|
|
# needed for librocksdb-sys
|
|
|
|
nativeBuildInputs = [ llvmPackages.clang ];
|
llvmPackages: Multuple outputs for everythting
Also begin to start work on cross compilation, though that will have to
be finished later.
The patches are based on the first version of
https://reviews.llvm.org/D99484. It's very annoying to do the
back-porting but the review has uncovered nothing super major so I'm
fine sticking with what I've got.
Beyond making the outputs work, I also strove to re-sync the packages,
as they have been drifting pointlessly apart for some time.
----
Other misc notes, highly incomplete
- lvm-config-native and llvm-config are put in `dev` because they are
tools just for build time.
- Clang no longer has an lld dep. That was introduced in
db29857eb391ed002046090851a44c452b80bdbd, but if clang needs help
finding lld when it is used we should just pass it flags / put in the
resource dir. Providing it at build time increases critical path
length for no good reason.
----
A note on `nativeCC`:
`stdenv` takes tools from the previous stage, so:
1. `pkgsBuildBuild`: `(?1, x, x)`
2. `pkgsBuildBuild.stdenv.cc`: `(?0, ?1, x)`
while:
1. `pkgsBuildBuild`: `(?1, x, x)`
2. `pkgsBuildBuild.targetPackages`: `(x, x, ?2)`
3. `pkgsBuildBuild.targetPackages.stdenv.cc`: `(?1, x, x)`
2020-10-15 09:23:57 +01:00
|
|
|
LIBCLANG_PATH = "${llvmPackages.libclang.lib}/lib";
|
2021-01-10 12:06:36 +00:00
|
|
|
|
2021-09-20 18:13:53 +01:00
|
|
|
# link rocksdb dynamically
|
|
|
|
ROCKSDB_INCLUDE_DIR = "${rocksdb}/include";
|
|
|
|
ROCKSDB_LIB_DIR = "${rocksdb}/lib";
|
|
|
|
|
2021-09-20 21:31:09 +01:00
|
|
|
buildInputs = lib.optionals stdenv.isDarwin [ Security ];
|
|
|
|
|
2021-01-10 12:06:36 +00:00
|
|
|
meta = with lib; {
|
|
|
|
description = "An efficient re-implementation of Electrum Server in Rust";
|
|
|
|
homepage = "https://github.com/romanz/electrs";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ prusnak ];
|
|
|
|
};
|
|
|
|
}
|