fulcrum: 1.12.0.1 -> 2.1.0

This commit is contained in:
jonscoresby
2026-05-02 22:38:12 -06:00
committed by Pavol Rusnak
parent 718305e422
commit 3ec4b8f09e
2 changed files with 13 additions and 6 deletions
@@ -173,6 +173,8 @@
- `services.home-assistant.config.lovelace.mode` has been renamed to `lovelace.dashboards` and `lovelace.resource_mode` to match the [configuration format](https://www.home-assistant.io/dashboards/dashboards/) required by Home Assistant 2026.8. Users who explicitly set `lovelace.mode` should remove it; the module generates the correct entries automatically.
- `fulcrum` has been updated to 2.x. If run against an existing v1.x database without the `--db-upgrade` flag it refuses to start; the upgrade takes around an hour on Bitcoin mainnet.
- `opentrack`, `slushload`, `synthesia`, `vtfedit`, `winbox`, `wineasio`, and `yabridge` use wineWow64Packages instead of wineWowPackages as wine versions >= 11.0 have deprecated wineWowPackages. As such, the prefixes for these packages are NOT backwards compatible and need to be regenerated with potential for data loss.
- []{#sec-release-26.05-incompatibilities-profiles-hardened-removed} `profiles/hardened` has been removed, because:
+11 -6
View File
@@ -4,21 +4,22 @@
fetchFromGitHub,
pkg-config,
python3,
rocksdb_7_10,
rocksdb_9_10,
zeromq,
nix-update-script,
libsForQt5,
nix-update-script,
testers,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "fulcrum";
version = "1.12.0.1";
version = "2.1.0";
src = fetchFromGitHub {
owner = "cculianu";
repo = "Fulcrum";
tag = "v${finalAttrs.version}";
hash = "sha256-/RlvbZ6/f0Jxj6oCeHjGWqlktvtNUNczOXi2/wYw2LQ=";
hash = "sha256-5DsZcnmqO8ZuD3+H/1lkfBrKeGq7efAjji0JDXTPQ1M=";
};
nativeBuildInputs = [
@@ -29,13 +30,16 @@ stdenv.mkDerivation (finalAttrs: {
buildInputs = [
python3
libsForQt5.qtbase
rocksdb_7_10
rocksdb_9_10
zeromq
];
dontWrapQtApps = true; # no GUI
passthru.updateScript = nix-update-script { };
passthru = {
updateScript = nix-update-script { };
tests.version = testers.testVersion { package = finalAttrs.finalPackage; };
};
meta = {
description = "Fast & nimble SPV server for Bitcoin Cash & Bitcoin BTC";
@@ -43,5 +47,6 @@ stdenv.mkDerivation (finalAttrs: {
maintainers = with lib.maintainers; [ prusnak ];
license = lib.licenses.gpl3Plus;
platforms = lib.platforms.unix;
mainProgram = "Fulcrum";
};
})