evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / bi / bibtex-tidy / package.nix
blob862c82c9d5c90387fa46742d4186335f6a7a8741
1 { lib
2 , buildNpmPackage
3 , fetchFromGitHub
4 , testers
5 , bibtex-tidy
6 }:
8 buildNpmPackage rec {
9   pname = "bibtex-tidy";
10   version = "1.14.0";
12   src = fetchFromGitHub {
13     owner = "FlamingTempura";
14     repo = "bibtex-tidy";
15     rev = "v${version}";
16     hash = "sha256-sMgy29deEfc3DFSC0Z4JZCeNAFpBKNYj+mJnFI1pSY4=";
17   };
19   npmDepsHash = "sha256-FKde5/ZZcS5g0fUaDjhRlKGLiS8kk1PvkZw9PUmvAAE=";
21   env = {
22     PUPPETEER_SKIP_DOWNLOAD = true;
23   };
25   passthru.tests = {
26     version = testers.testVersion {
27       package = bibtex-tidy;
28       version = "v${version}";
29     };
30   };
32   meta = {
33     changelog = "https://github.com/FlamingTempura/bibtex-tidy/blob/${src.rev}/CHANGELOG.md";
34     description = "Cleaner and Formatter for BibTeX files";
35     mainProgram = "bibtex-tidy";
36     homepage = "https://github.com/FlamingTempura/bibtex-tidy";
37     license = lib.licenses.mit;
38     maintainers = with lib.maintainers; [ bertof ];
39   };