Skip to content

Commit

Permalink
Update to 7.1.61
Browse files Browse the repository at this point in the history
  • Loading branch information
nktpro committed Jul 24, 2024
1 parent 78efd22 commit ae67770
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 11 deletions.
8 changes: 4 additions & 4 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 9 additions & 2 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
description = "FDB";

inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-23.11";
nixpkgs.url = "github:nixos/nixpkgs/249fbde2a178a2ea2638b65b9ecebd531b338cf9";
flakeUtils.url = "github:numtide/flake-utils";
};

Expand Down Expand Up @@ -69,7 +69,14 @@
text = builtins.toJSON {
"nix.enableLanguageServer" = true;
"nix.formatterPath" = pkgs.nixpkgs-fmt + "/bin/nixpkgs-fmt";
"nix.serverPath" = pkgs.rnix-lsp + "/bin/rnix-lsp";
"nix.serverSettings" = {
"nil" = {
"formatting" = {
"command" = [ "nixpkgs-fmt" ];
};
};
};
"nix.serverPath" = pkgs.nil + "/bin/nil";
};
};
in
Expand Down
6 changes: 3 additions & 3 deletions nix/7.x/aarch64-darwin.nix
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,16 @@
, cpio
}:
let
version = "7.1.57";
version = "7.1.61";
installer = fetchurl {
name = "foundationdb-installer-${version}";
url = "https://github.com/apple/foundationdb/releases/download/${version}/FoundationDB-${version}_arm64.pkg";
sha256 = "sha256-YmXEuuMMC5ZyJbfmHtgaZT6TKC3mh7P3v3rDFOIKsFU=";
sha256 = "sha256-uPPJm4U+6C/9qgq/fnwUIiML6Khi/LoosOD14VVRA7s=";
};
jar = fetchurl {
name = "foundationdb-jar-${version}";
url = "https://repo1.maven.org/maven2/org/foundationdb/fdb-java/${version}/fdb-java-${version}.jar";
sha256 = "sha256-Ip+eFIYeTchp0JQwDo4OAu+XMv4AjvINxP0be0XHLZk=";
sha256 = "sha256-jr3HruziJMxqTtvqbEtKx7VZZ/OHqxJAyXU/Sg87JaA=";
};
in
runCommand "foundationdb-${version}"
Expand Down
4 changes: 2 additions & 2 deletions nix/7.x/linux.nix
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
, jemalloc
, glibc
, removeReferencesTo
, version ? "7.1.57"
, sha256 ? "sha256-Z56SmqM3a7FM89WR/8npB3BIyE7xt2eeXZrV3fgYNic="
, version ? "7.1.61"
, sha256 ? "sha256-D+jlhhAmTZx2n84L+TxiVjiSXP5aWeZDbosEp4m2xas="
}:
let
src = fetchFromGitHub {
Expand Down

0 comments on commit ae67770

Please sign in to comment.