2021-01-10 13:06:36 +01:00
|
|
|
{ lib
|
2021-09-20 22:31:09 +02:00
|
|
|
, stdenv
|
2021-01-10 13:06:36 +01:00
|
|
|
, rustPlatform
|
|
|
|
, fetchFromGitHub
|
|
|
|
, llvmPackages
|
2021-09-20 19:13:53 +02:00
|
|
|
, rocksdb
|
2021-09-20 22:31:09 +02:00
|
|
|
, Security
|
2021-01-10 13:06:36 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "electrs";
|
2021-11-01 14:26:21 +01:00
|
|
|
version = "0.9.2";
|
2021-01-10 13:06:36 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "romanz";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2021-11-01 14:26:21 +01:00
|
|
|
hash = "sha256-dYKSc5fU66fu+GdTeWQBrIOJAiBGdYAOS7MCto98Xss=";
|
2021-01-10 13:06:36 +01:00
|
|
|
};
|
|
|
|
|
2021-11-01 14:26:21 +01:00
|
|
|
cargoHash = "sha256-M4H5tUbo1f18kk8S53saebSnZhZFr8udw41BUNJbQVI==";
|
2021-09-20 19:12:30 +02:00
|
|
|
|
2021-01-10 13:06:36 +01: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 10:23:57 +02:00
|
|
|
LIBCLANG_PATH = "${llvmPackages.libclang.lib}/lib";
|
2021-01-10 13:06:36 +01:00
|
|
|
|
2021-11-01 14:26:21 +01:00
|
|
|
# temporarily disable dynamic linking, which broke with rocksdb update 6.23.3 -> 6.25.3
|
|
|
|
# https://github.com/NixOS/nixpkgs/pull/143524#issuecomment-955053331
|
|
|
|
#
|
2021-09-20 19:13:53 +02:00
|
|
|
# link rocksdb dynamically
|
2021-11-01 14:26:21 +01:00
|
|
|
# ROCKSDB_INCLUDE_DIR = "${rocksdb}/include";
|
|
|
|
# ROCKSDB_LIB_DIR = "${rocksdb}/lib";
|
2021-09-20 19:13:53 +02:00
|
|
|
|
2021-09-20 22:31:09 +02:00
|
|
|
buildInputs = lib.optionals stdenv.isDarwin [ Security ];
|
|
|
|
|
2021-01-10 13:06:36 +01: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 ];
|
|
|
|
};
|
|
|
|
}
|