3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #145237 from lovesegfault/rnix-lsp-nix-stable

rnix-lsp: use nix (2.4)
This commit is contained in:
Maximilian Bosch 2021-11-15 19:27:20 +01:00 committed by GitHub
commit 80de0b9ea4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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";