about summary refs log tree commit diff
diff options
context:
space:
mode:
authorNikolay Korotkiy2024-01-27 20:09:33 +0400
committerGitHub2024-01-27 20:09:33 +0400
commit9342cf9f3b45a56b7adb7c4d306b31fc26b1cbba (patch)
tree9b7c5af9e439e1aad2a22ed1f4f11054d3bb8e2a
parent85bd29e2d64d2bc8de3b6c5ad245de6e2686c10d (diff)
parent5fee44fd25c487d43cd81ad87e5df7c15e89a570 (diff)
Merge pull request #283955 from aaronjheng/vsce
vsce: 2.22.0 -> 2.23.0
-rw-r--r--pkgs/development/tools/vsce/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/development/tools/vsce/default.nix b/pkgs/development/tools/vsce/default.nix
index 911ee57a6932..5ba007818e3b 100644
--- a/pkgs/development/tools/vsce/default.nix
+++ b/pkgs/development/tools/vsce/default.nix
@@ -12,16 +12,16 @@
 
 buildNpmPackage rec {
   pname = "vsce";
-  version = "2.22.0";
+  version = "2.23.0";
 
   src = fetchFromGitHub {
     owner = "microsoft";
     repo = "vscode-vsce";
     rev = "v${version}";
-    hash = "sha256-zpZ/PsqZ9yRDKTXkSrcBgSxYer7JdjNZqsseHwfzkEY=";
+    hash = "sha256-2s8hG3HNDQnuwFXZX1mCTSbKCm4n7YAzhHDaWVYTyys=";
   };
 
-  npmDepsHash = "sha256-Difk9a9TYmfwzP9SawEuaxm7iHVjdfO+FxFCE7aEMzM=";
+  npmDepsHash = "sha256-1PVUDEecFW+lFmZOZUTlgeKsLwLK9O4vFHi6gOLjBfo=";
 
   postPatch = ''
     substituteInPlace package.json --replace '"version": "0.0.0"' '"version": "${version}"'
@@ -44,5 +44,6 @@ buildNpmPackage rec {
     description = "Visual Studio Code Extension Manager";
     maintainers = with maintainers; [ aaronjheng ];
     license = licenses.mit;
+    mainProgram = "vsce";
   };
 }