nixpkgs/pkgs/development/tools/rnix-lsp/default.nix
Maximilian Bosch e4412ac273 rnix-lsp: 0.2.1 -> 0.2.3
ChangeLog: https://github.com/nix-community/rnix-lsp/blob/release-0.2.x/CHANGELOG.md#v023---2021-12-24

* Update `rnix` to 0.10.1 for support of new Nix 2.4 language features.
* Fix test-suite on Darwin.
2021-12-24 11:09:46 -05:00

24 lines
610 B
Nix

{ lib, fetchFromGitHub, rustPlatform, nix }:
rustPlatform.buildRustPackage rec {
pname = "rnix-lsp";
version = "0.2.3";
src = fetchFromGitHub {
owner = "nix-community";
repo = "rnix-lsp";
rev = "v${version}";
sha256 = "sha256-D2ItR8z4LqEH1IL53vq/wPh9Pfe3eB0KsA79aLM/BWM=";
};
cargoSha256 = "sha256-71vH8oc8DmwbwM2PgxjGmWAbyC4AByx7waHxLsr2koI=";
checkInputs = [ nix ];
meta = with lib; {
description = "A work-in-progress language server for Nix, with syntax checking and basic completion";
license = licenses.mit;
maintainers = with maintainers; [ ma27 ];
};
}