2021-01-10 12:06:36 +00:00
|
|
|
{ lib
|
2021-09-20 20:31:09 +00:00
|
|
|
, stdenv
|
2021-01-10 12:06:36 +00:00
|
|
|
, rustPlatform
|
|
|
|
, fetchFromGitHub
|
|
|
|
, llvmPackages
|
2021-11-13 23:36:30 +00:00
|
|
|
, rocksdb_6_23
|
2021-09-20 20:31:09 +00:00
|
|
|
, Security
|
2021-01-10 12:06:36 +00:00
|
|
|
}:
|
|
|
|
|
2021-11-13 23:36:30 +00:00
|
|
|
let
|
|
|
|
rocksdb = rocksdb_6_23;
|
|
|
|
in
|
2021-01-10 12:06:36 +00:00
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "electrs";
|
2022-09-02 11:03:13 +00:00
|
|
|
version = "0.9.9";
|
2021-01-10 12:06:36 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "romanz";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2022-09-02 11:03:13 +00:00
|
|
|
hash = "sha256-jU0qN+T5bHn9l/SXDR/Wa8uCGyJhIDUCHzEQe39L2MQ=";
|
2021-01-10 12:06:36 +00:00
|
|
|
};
|
|
|
|
|
2022-09-02 11:03:13 +00:00
|
|
|
cargoHash = "sha256-hdScQd0Fd6gE9/f4kk0zjZLK42oK1aaDzIOcAIsJqbU=";
|
2021-09-20 17:12:30 +00: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 08:23:57 +00:00
|
|
|
LIBCLANG_PATH = "${llvmPackages.libclang.lib}/lib";
|
2021-01-10 12:06:36 +00:00
|
|
|
|
2021-09-20 17:13:53 +00:00
|
|
|
# link rocksdb dynamically
|
2021-11-13 23:36:05 +00:00
|
|
|
ROCKSDB_INCLUDE_DIR = "${rocksdb}/include";
|
|
|
|
ROCKSDB_LIB_DIR = "${rocksdb}/lib";
|
2021-09-20 17:13:53 +00:00
|
|
|
|
2021-09-20 20:31:09 +00: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 ];
|
|
|
|
};
|
|
|
|
}
|