diff options
| author | Bobby Rong <rjl931189261@126.com> | 2021-11-29 10:34:52 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-11-29 10:34:52 +0800 |
| commit | 5e2f144e738f34893e772c02dc0b13d86386262f (patch) | |
| tree | 5cda934d57698ea2ce568785692be52d013f9242 | |
| parent | Merge pull request #147787 from NixOS/backport-147736-to-release-21.11 (diff) | |
| parent | rnix-lsp: Use nix 2.4 (diff) | |
| download | nixpkgs-5e2f144e738f34893e772c02dc0b13d86386262f.tar.gz | |
Merge pull request #147754 from artemist/rnix-lsp-21.11
[21.11] rnix-lsp: Use nix 2.4
| -rw-r--r-- | pkgs/development/tools/rnix-lsp/default.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/tools/rnix-lsp/default.nix b/pkgs/development/tools/rnix-lsp/default.nix index 327a93637fc2..d9a8c4bdd592 100644 --- a/pkgs/development/tools/rnix-lsp/default.nix +++ b/pkgs/development/tools/rnix-lsp/default.nix @@ -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"; |
