summary refs log tree commit diff
path: root/pkgs/development/tools
diff options
context:
space:
mode:
authorjD91mZM2 <me@krake.one>2020-01-12 10:41:20 +0000
committerzimbatm <zimbatm@zimbatm.com>2020-01-12 10:41:20 +0000
commit09f0bc828eb4acc10374496ed9a0a34eb88da61d (patch)
tree5d0ab9947f8f88453bc6e523aa1c28c1d6905342 /pkgs/development/tools
parente5672143d86ef0beb4b200105330e7da65c9d773 (diff)
downloadnixpkgs-09f0bc828eb4acc10374496ed9a0a34eb88da61d.tar
nixpkgs-09f0bc828eb4acc10374496ed9a0a34eb88da61d.tar.gz
nixpkgs-09f0bc828eb4acc10374496ed9a0a34eb88da61d.tar.bz2
nixpkgs-09f0bc828eb4acc10374496ed9a0a34eb88da61d.tar.lz
nixpkgs-09f0bc828eb4acc10374496ed9a0a34eb88da61d.tar.xz
nixpkgs-09f0bc828eb4acc10374496ed9a0a34eb88da61d.tar.zst
nixpkgs-09f0bc828eb4acc10374496ed9a0a34eb88da61d.zip
rnix-lsp: init at 0.1.0 (#77549)
Diffstat (limited to 'pkgs/development/tools')
-rw-r--r--pkgs/development/tools/rnix-lsp/default.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/pkgs/development/tools/rnix-lsp/default.nix b/pkgs/development/tools/rnix-lsp/default.nix
new file mode 100644
index 00000000000..37a1955ce8b
--- /dev/null
+++ b/pkgs/development/tools/rnix-lsp/default.nix
@@ -0,0 +1,22 @@
+{ callPackage, lib, fetchFromGitHub, rustPlatform }:
+
+rustPlatform.buildRustPackage rec {
+  pname = "rnix-lsp";
+  version = "0.1.0";
+
+  src = fetchFromGitHub {
+    owner = "nix-community";
+    repo = "rnix-lsp";
+    rev = "v${version}";
+
+    sha256 = "0fy620c34kxl27sd62x9mj0555bcdmnmbsxavmyiwb497z1m9wnn";
+  };
+
+  cargoSha256 = "1wm5m7b6zr6wg1k59rmqis1zp9i2990p7y0ml852hxv34an7pp5d";
+
+  meta = with lib; {
+    description = "A work-in-progress language server for Nix, with syntax checking and basic completion";
+    license = licenses.mit;
+    maintainers = with maintainers; [ jD91mZM2 ];
+  };
+}