Merge pull request #147754 from artemist/rnix-lsp-21.11

[21.11] rnix-lsp: Use nix 2.4
This commit is contained in:
Bobby Rong
2021-11-29 10:34:52 +08:00
committed by GitHub

View File

@@ -1,4 +1,4 @@
{ lib, fetchFromGitHub, rustPlatform, nix }:
{ lib, fetchFromGitHub, rustPlatform, nix_2_4 }:
rustPlatform.buildRustPackage rec {
pname = "rnix-lsp";
@@ -13,7 +13,7 @@ rustPlatform.buildRustPackage rec {
cargoSha256 = "sha256-Tw05eOIMJj+zX0fqtn6wJwolKNkYqfVuo/WO/WvYu2k=";
checkInputs = [ nix ];
checkInputs = [ nix_2_4 ];
meta = with lib; {
description = "A work-in-progress language server for Nix, with syntax checking and basic completion";