about summary refs log tree commit diff
path: root/pkgs/development/tools/language-servers/nil
diff options
context:
space:
mode:
authorfigsoda <figsoda@pm.me>2023-08-09 12:07:55 -0400
committerfigsoda <figsoda@pm.me>2023-08-09 12:14:32 -0400
commit784b4a8b70ec5f2809e7be0b058c943349b64ac1 (patch)
tree9e74ba15d54730b3058d38565b127a6af3dd35f5 /pkgs/development/tools/language-servers/nil
parentc25960f7e89535622359790c03bcd9abfed7c298 (diff)
nil: 2023-05-09 -> 2023-08-09
Diff: https://github.com/oxalica/nil/compare/2023-05-09...2023-08-09

Changelog: https://github.com/oxalica/nil/releases/tag/2023-08-09
Diffstat (limited to 'pkgs/development/tools/language-servers/nil')
-rw-r--r--pkgs/development/tools/language-servers/nil/default.nix14
1 files changed, 7 insertions, 7 deletions
diff --git a/pkgs/development/tools/language-servers/nil/default.nix b/pkgs/development/tools/language-servers/nil/default.nix
index 6b3976dfa16b8..19822d2977fc1 100644
--- a/pkgs/development/tools/language-servers/nil/default.nix
+++ b/pkgs/development/tools/language-servers/nil/default.nix
@@ -1,24 +1,24 @@
-{ lib, rustPlatform, fetchFromGitHub, nix, nix-update-script }:
+{ lib, rustPlatform, fetchFromGitHub, nixVersions, nix-update-script }:
 
 rustPlatform.buildRustPackage rec {
   pname = "nil";
-  version = "2023-05-09";
+  version = "2023-08-09";
 
   src = fetchFromGitHub {
     owner = "oxalica";
     repo = pname;
     rev = version;
-    hash = "sha256-Xg3Cux5wQDatXRvQWsVD0YPfmxfijjG8+gxYqgoT6JE=";
+    hash = "sha256-fZ8KfBMcIFO/R7xaWtB85SFeuUjb9SCH8fxYBnY8068=";
   };
 
-  cargoHash = "sha256-N7flQRIc0CXTuKjy9tVZapu+CXUT4rg66VLLT/vMUoc=";
-
-  CFG_RELEASE = version;
+  cargoHash = "sha256-lyKPmzuZB9rCBI9JxhxlyDtNHLia8FXGnSgV+D/dwgo=";
 
   nativeBuildInputs = [
-    (lib.getBin nix)
+    (lib.getBin nixVersions.unstable)
   ];
 
+  env.CFG_RELEASE = version;
+
   # might be related to https://github.com/NixOS/nix/issues/5884
   preBuild = ''
     export NIX_STATE_DIR=$(mktemp -d)