Commit def9b6a5 authored by Gregor Grigorjan's avatar Gregor Grigorjan Committed by Anderson Torres
Browse files

hexo-cli: init at 4.3.1

parent 1faf0ef1
Loading
Loading
Loading
Loading
+34 −0
Original line number Diff line number Diff line
{ 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;
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -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 { };