saunafs: 4.11.0 -> 5.1.2

override fmt and spdlog. saunafs now needs fmt_11.
spdlog needs to be built with same version of fmt.
This commit is contained in:
Markus Kowalewski
2025-09-16 16:39:19 +02:00
parent 434ed09bd1
commit 35eac3f2b7
2 changed files with 9 additions and 2 deletions
+2 -2
View File
@@ -22,13 +22,13 @@
stdenv.mkDerivation (finalAttrs: {
pname = "saunafs";
version = "4.11.0";
version = "5.1.2";
src = fetchFromGitHub {
owner = "leil-io";
repo = "saunafs";
rev = "v${finalAttrs.version}";
hash = "sha256-ZQ0+jiVpHZhAOdYneKkPi3M45LU9xj2FBbqo6VcD0JY=";
hash = "sha256-56PlUeXHqNhKYokKWqLCeaP3FZBdefhQFQQoP8YytQQ=";
};
patches = [
+7
View File
@@ -4110,6 +4110,13 @@ with pkgs;
sasview = libsForQt5.callPackage ../applications/science/misc/sasview { };
saunafs = callPackage ../by-name/sa/saunafs/package.nix {
fmt = fmt_11;
spdlog = spdlog.override {
fmt = fmt_11;
};
};
scfbuild = python3.pkgs.callPackage ../tools/misc/scfbuild { };
segger-jlink-headless = callPackage ../by-name/se/segger-jlink/package.nix { headless = true; };