inshellisense: init at 0.0.1-rc.4

This commit is contained in:
Malo Bourgon 2023-11-06 15:29:56 -08:00
parent 3832b75e4e
commit b4f1587b27

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 ];
};
}