nerdfonts: fix wrong attribute name in error message (#364463)
[NixPkgs.git] / pkgs / by-name / ma / math-preview / package.nix
blobe1b0214c5c7764c35909c8215e08206fa224fafd
2   lib,
3   nix-update-script,
4   fetchFromGitLab,
5   buildNpmPackage,
6   nodejs,
7 }:
9 buildNpmPackage rec {
10   pname = "math-preview";
11   version = "5.1.1";
13   src = fetchFromGitLab {
14     owner = "matsievskiysv";
15     repo = "math-preview";
16     rev = "v${version}";
17     hash = "sha256-P3TZ/D6D2PvwPV6alSrDEQujzgI8DhK4VOuCC0BCIFo=";
18   };
20   npmDepsHash = "sha256-GAPhG3haM9UNdj6tCz8I4j7v6rvNbatdu7NjCeENj3s=";
21   dontNpmBuild = true;
23   passthru = {
24     updateScript = nix-update-script { };
25   };
27   meta = with lib; {
28     description = "Emacs preview math inline";
29     mainProgram = "math-preview";
30     license = licenses.gpl3Plus;
31     homepage = "https://gitlab.com/matsievskiysv/math-preview";
32     maintainers = with maintainers; [ renesat ];
33     inherit (nodejs.meta) platforms;
34   };