caddy: 2.9.0 -> 2.9.1 (#375655)
[NixPkgs.git] / pkgs / by-name / wh / whistle / package.nix
blob3a0be68e35e7e09a6b40ab090a0d87b5e8787496
1 { lib, buildNpmPackage, fetchFromGitHub }:
3 buildNpmPackage rec {
4   pname = "whistle";
5   version = "2.9.92";
7   src = fetchFromGitHub {
8     owner = "avwo";
9     repo = "whistle";
10     rev = "v${version}";
11     hash = "sha256-pIOVVCoyC6j8QeNDlls9EpDwKUpBLbFuxL2bMpSog5A=";
12   };
14   npmDepsHash = "sha256-z4w5JQdGuWu7z3rWYLO83uCrrSjt2wKbhRUGgrduoOc=";
16   dontNpmBuild = true;
18   meta = with lib; {
19     description = "HTTP, HTTP2, HTTPS, Websocket debugging proxy";
20     homepage = "https://github.com/avwo/whistle";
21     changelog = "https://github.com/avwo/whistle/blob/${src.rev}/CHANGELOG.md";
22     license = licenses.mit;
23     maintainers = [ ];
24     mainProgram = "whistle";
25   };