rnix-lsp: use nix (2.4)

Follow-up to #144197 since nixUnstable is no longer needed for flake
support.
This commit is contained in:
Bernardo Meurer
2021-11-09 11:35:43 -08:00
parent a658747329
commit e6548105b7
+2 -2
View File
@@ -1,4 +1,4 @@
{ lib, fetchFromGitHub, rustPlatform, nixUnstable }:
{ lib, fetchFromGitHub, rustPlatform, nix }:
rustPlatform.buildRustPackage rec {
pname = "rnix-lsp";
@@ -13,7 +13,7 @@ rustPlatform.buildRustPackage rec {
cargoSha256 = "sha256-Tw05eOIMJj+zX0fqtn6wJwolKNkYqfVuo/WO/WvYu2k=";
checkInputs = [ nixUnstable ];
checkInputs = [ nix ];
meta = with lib; {
description = "A work-in-progress language server for Nix, with syntax checking and basic completion";