hexo-cli: init at 4.3.1
This commit is contained in:
parent
1faf0ef118
commit
def9b6a5a5
2 changed files with 36 additions and 0 deletions
34
pkgs/development/tools/hexo-cli/default.nix
Normal file
34
pkgs/development/tools/hexo-cli/default.nix
Normal 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;
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue