mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
8feccc5533
Diff: https://github.com/microsoft/inshellisense/compare/refs/tags/0.0.1-rc.15...0.0.1-rc.16
33 lines
1.1 KiB
Nix
33 lines
1.1 KiB
Nix
{ lib, stdenv, buildNpmPackage, fetchFromGitHub, cacert }:
|
|
|
|
buildNpmPackage rec {
|
|
pname = "inshellisense";
|
|
version = "0.0.1-rc.16";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "microsoft";
|
|
repo = pname;
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-jqLYN251ZvLOjYsSQJmvQ1TupO4jz3Q23aDpKX+Puvs=";
|
|
};
|
|
|
|
npmDepsHash = "sha256-rGUyA0RLnNZ6ocmHPXfBLJ6ZmeeTN9w+TJTtfTQQ24M=";
|
|
|
|
# Needed for dependency `@homebridge/node-pty-prebuilt-multiarch`
|
|
# On Darwin systems the build fails with,
|
|
#
|
|
# npm ERR! ../src/unix/pty.cc:413:13: error: use of undeclared identifier 'openpty'
|
|
# npm ERR! int ret = openpty(&master, &slave, nullptr, NULL, static_cast<winsi ze*>(&winp));
|
|
#
|
|
# when `node-gyp` tries to build the dep. The below allows `npm` to download the prebuilt binary.
|
|
makeCacheWritable = stdenv.isDarwin;
|
|
nativeBuildInputs = lib.optional stdenv.isDarwin cacert;
|
|
|
|
meta = with lib; {
|
|
description = "IDE style command line auto complete";
|
|
homepage = "https://github.com/microsoft/inshellisense";
|
|
license = licenses.mit;
|
|
maintainers = [ maintainers.malo ];
|
|
};
|
|
}
|
|
|