ripasso-cursive: cosmetic changes (#361736)
[NixPkgs.git] / pkgs / by-name / pm / pm2 / package.nix
blob271c4eec105c8d1add54293f13757c6733058610
1 { lib
2 , buildNpmPackage
3 , fetchFromGitHub
4 }:
6 buildNpmPackage rec {
7   pname = "pm2";
8   version = "5.4.2";
10   src = fetchFromGitHub {
11     owner = "Unitech";
12     repo = "pm2";
13     rev = "v${version}";
14     hash = "sha256-8Fsh7rld7rtT55qVgj3/XbujNpZx0BfzTRcLjdPLFSA=";
15   };
17   npmDepsHash = "sha256-Rp3euhURkZgVyszyAwrIftL7lY4aoP+Q4kSQBFxwTcs=";
19   dontNpmBuild = true;
21   meta = {
22     changelog = "https://github.com/Unitech/pm2/blob/${src.rev}/CHANGELOG.md";
23     description = "Node.js production process manager with a built-in load balancer";
24     homepage = "https://github.com/Unitech/pm2";
25     license = lib.licenses.agpl3Only;
26     mainProgram = "pm2";
27     maintainers = with lib.maintainers; [ jeremyschlatter ];
28   };