Merge pull request #130063 from MatthewCroughan/hypercore-cli

hyperspace-cli: init at 1.5.1
This commit is contained in:
Sandro
2021-07-15 22:01:03 +02:00
committed by GitHub
4 changed files with 1604 additions and 125 deletions
@@ -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";
};
@@ -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
+2
View File
@@ -1325,6 +1325,8 @@ in
inherit (nodePackages) bitwarden-cli;
inherit (nodePackages) hyperspace-cli;
bkyml = callPackage ../tools/misc/bkyml { };
blockbench-electron = callPackage ../applications/graphics/blockbench-electron { };