Skip to content

Commit ae67770

Browse files
committed
Update to 7.1.61
1 parent 78efd22 commit ae67770

File tree

4 files changed

+18
-11
lines changed

4 files changed

+18
-11
lines changed

flake.lock

+4-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flake.nix

+9-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
description = "FDB";
33

44
inputs = {
5-
nixpkgs.url = "github:nixos/nixpkgs/nixos-23.11";
5+
nixpkgs.url = "github:nixos/nixpkgs/249fbde2a178a2ea2638b65b9ecebd531b338cf9";
66
flakeUtils.url = "github:numtide/flake-utils";
77
};
88

@@ -69,7 +69,14 @@
6969
text = builtins.toJSON {
7070
"nix.enableLanguageServer" = true;
7171
"nix.formatterPath" = pkgs.nixpkgs-fmt + "/bin/nixpkgs-fmt";
72-
"nix.serverPath" = pkgs.rnix-lsp + "/bin/rnix-lsp";
72+
"nix.serverSettings" = {
73+
"nil" = {
74+
"formatting" = {
75+
"command" = [ "nixpkgs-fmt" ];
76+
};
77+
};
78+
};
79+
"nix.serverPath" = pkgs.nil + "/bin/nil";
7380
};
7481
};
7582
in

nix/7.x/aarch64-darwin.nix

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,16 @@
77
, cpio
88
}:
99
let
10-
version = "7.1.57";
10+
version = "7.1.61";
1111
installer = fetchurl {
1212
name = "foundationdb-installer-${version}";
1313
url = "https://github.com/apple/foundationdb/releases/download/${version}/FoundationDB-${version}_arm64.pkg";
14-
sha256 = "sha256-YmXEuuMMC5ZyJbfmHtgaZT6TKC3mh7P3v3rDFOIKsFU=";
14+
sha256 = "sha256-uPPJm4U+6C/9qgq/fnwUIiML6Khi/LoosOD14VVRA7s=";
1515
};
1616
jar = fetchurl {
1717
name = "foundationdb-jar-${version}";
1818
url = "https://repo1.maven.org/maven2/org/foundationdb/fdb-java/${version}/fdb-java-${version}.jar";
19-
sha256 = "sha256-Ip+eFIYeTchp0JQwDo4OAu+XMv4AjvINxP0be0XHLZk=";
19+
sha256 = "sha256-jr3HruziJMxqTtvqbEtKx7VZZ/OHqxJAyXU/Sg87JaA=";
2020
};
2121
in
2222
runCommand "foundationdb-${version}"

nix/7.x/linux.nix

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818
, jemalloc
1919
, glibc
2020
, removeReferencesTo
21-
, version ? "7.1.57"
22-
, sha256 ? "sha256-Z56SmqM3a7FM89WR/8npB3BIyE7xt2eeXZrV3fgYNic="
21+
, version ? "7.1.61"
22+
, sha256 ? "sha256-D+jlhhAmTZx2n84L+TxiVjiSXP5aWeZDbosEp4m2xas="
2323
}:
2424
let
2525
src = fetchFromGitHub {

0 commit comments

Comments
 (0)