Skip to content

Commit

Permalink
marp-cli: 3.4.0 -> 4.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
GuillaumeDesforges committed Nov 2, 2024
1 parent b6e4867 commit 786b606
Showing 1 changed file with 15 additions and 58 deletions.
73 changes: 15 additions & 58 deletions pkgs/tools/typesetting/marp/default.nix
Original file line number Diff line number Diff line change
@@ -1,69 +1,26 @@
{ lib
, stdenv
, fetchFromGitHub
, fetchYarnDeps
, makeWrapper
, nodejs
, fixup-yarn-lock
, yarn
{
lib,
buildNpmPackage,
fetchFromGitHub,
nodejs,
}:

stdenv.mkDerivation (finalAttrs: {
buildNpmPackage rec {
pname = "marp-cli";
version = "3.4.0";
version = "4.0.0";

src = fetchFromGitHub {
owner = "marp-team";
repo = "marp-cli";
rev = "v${finalAttrs.version}";
hash = "sha256-azscuPkQ9/xcQtBg+5pJigXSQQVtBGvbd7ZwiLwU7Qo=";
repo = pname;
rev = "v${version}";
hash = "sha256-K638HwDOfHn5WiWqZKQ2r7conPpJi+UM7YpshmItWNU=";
};

offlineCache = fetchYarnDeps {
yarnLock = "${finalAttrs.src}/yarn.lock";
hash = "sha256-b/JyhsfXEbmM6+ajrjL65WhX9u9MEH+m1NHE6cTyf2g=";
};

nativeBuildInputs = [
makeWrapper
nodejs
fixup-yarn-lock
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"
npmDepsHash = "sha256-sspS4rVRrfOZ6hqRKD4s5DGGjlI9RZcjwn+W0ZPaO8E=";
npmPackFlags = [ "--ignore-scripts" ];
makeCacheWritable = true;

runHook postInstall
'';
doCheck = false;

meta = with lib; {
description = "About A CLI interface for Marp and Marpit based converters";
Expand All @@ -73,4 +30,4 @@ stdenv.mkDerivation (finalAttrs: {
platforms = nodejs.meta.platforms;
mainProgram = "marp";
};
})
}

0 comments on commit 786b606

Please sign in to comment.