hyperspace-cli: init at 1.5.1

Co-authored-by: Jonathan Ringer <jonringer@users.noreply.github.com>
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
This commit is contained in:
matthewcroughan 2021-07-15 19:04:51 +01:00
parent 301e023293
commit 79c92e4f06
4 changed files with 1604 additions and 125 deletions

View file

@ -35,6 +35,24 @@ let
'';
};
hyperspace-cli = super."@hyperspace/cli".override {
nativeBuildInputs = with pkgs; [
makeWrapper
libtool
autoconf
automake
];
buildInputs = with pkgs; [
nodePackages.node-gyp-build
nodejs
];
postInstall = ''
wrapProgram "$out/bin/hyp" --prefix PATH : ${
pkgs.lib.makeBinPath [ pkgs.nodejs ]
}
'';
};
coc-imselect = super.coc-imselect.override {
meta.broken = since "10";
};

View file

@ -3,6 +3,7 @@
, "@antora/cli"
, "@antora/site-generator-default"
, "@bitwarden/cli"
, "@hyperspace/cli"
, "@nestjs/cli"
, "@vue/cli"
, "@webassemblyjs/cli"

File diff suppressed because it is too large Load diff

View file

@ -1323,6 +1323,8 @@ in
inherit (nodePackages) bitwarden-cli;
inherit (nodePackages) hyperspace-cli;
bkyml = callPackage ../tools/misc/bkyml { };
blockbench-electron = callPackage ../applications/graphics/blockbench-electron { };