about summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorWeijia Wang <9713184+wegank@users.noreply.github.com>2023-06-21 07:52:44 +0300
committerGitHub <noreply@github.com>2023-06-21 07:52:44 +0300
commitc15d559895812d5cdcbb707215ac75072d56f7fd (patch)
tree437c4223edf9a238dd8b03d84caf6e64aea7b03d /pkgs/development
parent021df35c95094c11b3c7c4e5d736d59e9688a394 (diff)
parent55d6d9df5f4a2c5fd4bc480c3673436b73c47c4f (diff)
Merge pull request #238779 from Ruixi-rebirth/nixd
nixd: 1.0.0 -> 1.1.0
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/tools/language-servers/nixd/default.nix13
1 files changed, 10 insertions, 3 deletions
diff --git a/pkgs/development/tools/language-servers/nixd/default.nix b/pkgs/development/tools/language-servers/nixd/default.nix
index 4bf1af6a01c7f..d8006f0c7630f 100644
--- a/pkgs/development/tools/language-servers/nixd/default.nix
+++ b/pkgs/development/tools/language-servers/nixd/default.nix
@@ -1,7 +1,10 @@
 { lib
 , stdenv
 , fetchFromGitHub
+, nix-update-script
+, bison
 , boost182
+, flex
 , gtest
 , libbacktrace
 , lit
@@ -15,13 +18,13 @@
 
 stdenv.mkDerivation rec {
   pname = "nixd";
-  version = "1.0.0";
+  version = "1.1.0";
 
   src = fetchFromGitHub {
     owner = "nix-community";
     repo = "nixd";
     rev = version;
-    hash = "sha256-kTDPbsQi9gzFAFkiAPF+V3yI1WBmILEnnsqdgHMqXJA=";
+    hash = "sha256-zeBVh9gPMR+1ETx0ujl+TUSoeHHR4fkQfxyOpCDKP9M=";
   };
 
   mesonBuildType = "release";
@@ -30,6 +33,8 @@ stdenv.mkDerivation rec {
     meson
     ninja
     pkg-config
+    bison
+    flex
   ];
 
   nativeCheckInputs = [
@@ -70,11 +75,13 @@ stdenv.mkDerivation rec {
     runHook postCheck
   '';
 
+  passthru.updateScript = nix-update-script { };
+
   meta = {
     description = "Nix language server";
     homepage = "https://github.com/nix-community/nixd";
     license = lib.licenses.lgpl3Plus;
-    maintainers = with lib.maintainers; [ inclyc ];
+    maintainers = with lib.maintainers; [ inclyc Ruixi-rebirth ];
     platforms = lib.platforms.unix;
     broken = stdenv.isDarwin;
   };