summary refs log tree commit diff
path: root/pkgs/tools/networking/configurable-http-proxy/default.nix
blob: 34cf5307038d9460e6e3d02316a0d8fed8e3ff32 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{ lib
, buildNpmPackage
, fetchFromGitHub
}:

buildNpmPackage rec {
  pname = "configurable-http-proxy";
  version = "4.5.6";

  src = fetchFromGitHub {
    owner = "jupyterhub";
    repo = "configurable-http-proxy";
    rev = version;
    hash = "sha256-nj6+GmBw5YSQs23rWVh3qU4jdzRdbPyx43QmZ3LRwn4=";
  };

  npmDepsHash = "sha256-3HzVI7L1BH9PEBcb7CWWRQqWdSlWiCTo0qqnlSHGn7Y=";

  dontNpmBuild = true;

  meta = {
    changelog = "https://github.com/jupyterhub/configurable-http-proxy/blob/${src.rev}/CHANGELOG.md";
    description = "A configurable-on-the-fly HTTP Proxy";
    homepage = "https://github.com/jupyterhub/configurable-http-proxy";
    license = lib.licenses.bsd3;
    mainProgram = "configurable-http-proxy";
    maintainers = with lib.maintainers; [ ixxie ];
  };
}