Merge pull request #265958 from malob/add-inshellisense

inshellisense: init at 0.0.1-rc.4
This commit is contained in:
Nick Cao 2023-11-23 09:16:17 -05:00 committed by GitHub
commit dfb9303e00
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,23 @@
{ lib, buildNpmPackage, fetchFromGitHub }:
buildNpmPackage rec {
pname = "inshellisense";
version = "0.0.1-rc.4";
src = fetchFromGitHub {
owner = "microsoft";
repo = pname;
rev = "refs/tags/${version}";
hash = "sha256-PYSonVyclGSH3ArbqJuKrBNGbJaQEp6XemwnHboVwPk=";
};
npmDepsHash = "sha256-sjr4Hy1/zWPAlVGsMkyQIQcBT86KLaN2/UAaAd7Mn6Q=";
meta = with lib; {
description = "IDE style command line auto complete";
homepage = "https://github.com/microsoft/inshellisense";
license = licenses.mit;
maintainers = [ maintainers.malo ];
};
}