biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / by-name / my / mystmd / package.nix
blobf0a16544096ceef7930e665fcc01fc0e06a09c74
1 { lib, buildNpmPackage, fetchFromGitHub, mystmd, testers, nix-update-script }:
3 buildNpmPackage rec {
4   pname = "mystmd";
5   version = "1.3.8";
7   src = fetchFromGitHub {
8     owner = "executablebooks";
9     repo = "mystmd";
10     rev = "mystmd@${version}";
11     hash = "sha256-SGjukKIthrCHD5u+QoD37xfw6XmaOCVquveuawBltMI=";
12   };
14   npmDepsHash = "sha256-97DOfFADaCZ0hlprRvJvMqhhmpjc4lU0Sw45NTc8IlE=";
16   dontNpmInstall = true;
18   installPhase = ''
19     runHook preInstall
21     install -D packages/mystmd/dist/myst.cjs $out/bin/myst
23     runHook postInstall
24   '';
26   passthru = {
27     tests.version = testers.testVersion {
28       package = mystmd;
29       version = "v${version}";
30     };
31     updateScript = nix-update-script { };
32   };
34   meta = with lib; {
35     description = "Command line tools for working with MyST Markdown";
36     homepage = "https://github.com/executablebooks/mystmd";
37     changelog = "https://github.com/executablebooks/mystmd/blob/${src.rev}/packages/myst-cli/CHANGELOG.md";
38     license = licenses.mit;
39     maintainers = [ ];
40     mainProgram = "myst";
41   };