streamlink: 7.1.1 -> 7.1.2 (#373269)
[NixPkgs.git] / pkgs / by-name / h2 / h2o / package.nix
blob3fafadb333f867a1643516590c653fd0d0e9a315
2   lib,
3   stdenv,
4   fetchFromGitHub,
5   pkg-config,
6   cmake,
7   ninja,
8   openssl,
9   libuv,
10   zlib,
13 stdenv.mkDerivation rec {
14   pname = "h2o";
15   version = "2.3.0-beta2";
17   src = fetchFromGitHub {
18     owner = "h2o";
19     repo = "h2o";
20     tag = "v${version}";
21     sha256 = "0lwg5sfsr7fw7cfy0hrhadgixm35b5cgcvlhwhbk89j72y1bqi6n";
22   };
24   outputs = [
25     "out"
26     "man"
27     "dev"
28     "lib"
29   ];
31   nativeBuildInputs = [
32     pkg-config
33     cmake
34     ninja
35   ];
36   buildInputs = [
37     openssl
38     libuv
39     zlib
40   ];
42   meta = with lib; {
43     description = "Optimized HTTP/1 and HTTP/2 server";
44     homepage = "https://h2o.examp1e.net";
45     license = licenses.mit;
46     maintainers = with maintainers; [ thoughtpolice ];
47     platforms = platforms.linux;
48   };