hexo-cli: init at 4.3.1

This commit is contained in:
Gregor Grigorjan 2023-09-08 20:21:52 +03:00 committed by Anderson Torres
parent 1faf0ef118
commit def9b6a5a5
2 changed files with 36 additions and 0 deletions

View File

@ -0,0 +1,34 @@
{ lib
, buildNpmPackage
, fetchFromGitHub
}:
buildNpmPackage rec {
pname = "hexo-cli";
version = "4.3.1";
src = fetchFromGitHub {
owner = "hexojs";
repo = "hexo-cli";
rev = "v${version}";
hash = "sha256-mtbg9Fa9LBqG/aNfm4yEo4ymuaxuqhymkO1q6mYA2Fs=";
};
npmDepsHash = "sha256-VCHG1YMPRwEBbwgscSv6V+fTNVRpsCxWeyO8co4Zy6k=";
installPhase = ''
runHook preInstall
mkdir -p $out
cp -r bin/ dist/ node_modules/ package.json $out/
runHook postInstall
'';
meta = {
description = "Command line interface for Hexo";
mainProgram = "hexo";
homepage = "https://hexo.io/";
license = lib.licenses.mit;
};
}

View File

@ -1837,6 +1837,8 @@ with pkgs;
hexdiff = callPackage ../tools/misc/hexdiff { };
hexo-cli = callPackage ../development/tools/hexo-cli { };
hostmux = callPackage ../tools/misc/hostmux { };
hsd = callPackage ../tools/misc/hsd { };