mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 19:21:04 +00:00
43 lines
1 KiB
Nix
43 lines
1 KiB
Nix
{ lib, buildNpmPackage, fetchFromGitHub, mystmd, testers, nix-update-script }:
|
|
|
|
buildNpmPackage rec {
|
|
pname = "mystmd";
|
|
version = "1.3.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "executablebooks";
|
|
repo = "mystmd";
|
|
rev = "mystmd@${version}";
|
|
hash = "sha256-SGjukKIthrCHD5u+QoD37xfw6XmaOCVquveuawBltMI=";
|
|
};
|
|
|
|
npmDepsHash = "sha256-97DOfFADaCZ0hlprRvJvMqhhmpjc4lU0Sw45NTc8IlE=";
|
|
|
|
dontNpmInstall = true;
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
install -D packages/mystmd/dist/myst.cjs $out/bin/myst
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
passthru = {
|
|
tests.version = testers.testVersion {
|
|
package = mystmd;
|
|
version = "v${version}";
|
|
};
|
|
updateScript = nix-update-script { };
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Command line tools for working with MyST Markdown";
|
|
homepage = "https://github.com/executablebooks/mystmd";
|
|
changelog = "https://github.com/executablebooks/mystmd/blob/${src.rev}/packages/myst-cli/CHANGELOG.md";
|
|
license = licenses.mit;
|
|
maintainers = [ ];
|
|
mainProgram = "myst";
|
|
};
|
|
}
|