2023-07-20 14:51:38 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchFromGitHub
|
|
|
|
, fetchYarnDeps
|
|
|
|
, makeWrapper
|
|
|
|
, nodejs
|
2024-04-17 17:34:05 +00:00
|
|
|
, fixup-yarn-lock
|
2023-07-20 14:51:38 +00:00
|
|
|
, yarn
|
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
|
|
pname = "marp-cli";
|
2024-06-16 20:15:55 +00:00
|
|
|
version = "3.4.0";
|
2023-07-20 14:51:38 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "marp-team";
|
|
|
|
repo = "marp-cli";
|
|
|
|
rev = "v${finalAttrs.version}";
|
2024-06-16 20:15:55 +00:00
|
|
|
hash = "sha256-azscuPkQ9/xcQtBg+5pJigXSQQVtBGvbd7ZwiLwU7Qo=";
|
2023-07-20 14:51:38 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
offlineCache = fetchYarnDeps {
|
|
|
|
yarnLock = "${finalAttrs.src}/yarn.lock";
|
2024-06-16 20:15:55 +00:00
|
|
|
hash = "sha256-b/JyhsfXEbmM6+ajrjL65WhX9u9MEH+m1NHE6cTyf2g=";
|
2023-07-20 14:51:38 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
makeWrapper
|
|
|
|
nodejs
|
2024-04-17 17:34:05 +00:00
|
|
|
fixup-yarn-lock
|
2023-07-20 14:51:38 +00:00
|
|
|
yarn
|
|
|
|
];
|
|
|
|
|
|
|
|
configurePhase = ''
|
|
|
|
runHook preConfigure
|
|
|
|
|
|
|
|
export HOME=$(mktemp -d)
|
|
|
|
yarn config --offline set yarn-offline-mirror $offlineCache
|
|
|
|
fixup-yarn-lock yarn.lock
|
|
|
|
yarn --offline --frozen-lockfile --ignore-platform --ignore-scripts --no-progress --non-interactive install
|
|
|
|
patchShebangs node_modules
|
|
|
|
|
|
|
|
runHook postConfigure
|
|
|
|
'';
|
|
|
|
|
|
|
|
buildPhase = ''
|
|
|
|
runHook preBuild
|
|
|
|
|
|
|
|
yarn --offline build
|
|
|
|
|
|
|
|
runHook postBuild
|
|
|
|
'';
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
runHook preInstall
|
|
|
|
|
|
|
|
yarn --offline --production install
|
|
|
|
|
|
|
|
mkdir -p $out/lib/node_modules/@marp-team/marp-cli
|
|
|
|
cp -r lib node_modules marp-cli.js $out/lib/node_modules/@marp-team/marp-cli/
|
|
|
|
|
|
|
|
makeWrapper "${nodejs}/bin/node" "$out/bin/marp" \
|
|
|
|
--add-flags "$out/lib/node_modules/@marp-team/marp-cli/marp-cli.js"
|
|
|
|
|
|
|
|
runHook postInstall
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "About A CLI interface for Marp and Marpit based converters";
|
|
|
|
homepage = "https://github.com/marp-team/marp-cli";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ GuillaumeDesforges ];
|
|
|
|
platforms = nodejs.meta.platforms;
|
|
|
|
mainProgram = "marp";
|
|
|
|
};
|
|
|
|
})
|