biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / servers / simplehttp2server / default.nix
blobb14056f5adca167f9e6b7e973a0a3d64d1e63f87
1 { lib, buildGoPackage, fetchFromGitHub }:
3 buildGoPackage rec {
4   pname = "simplehttp2server";
5   version = "3.1.3";
7   goPackagePath = "github.com/GoogleChromeLabs/simplehttp2server";
9   src = fetchFromGitHub {
10      owner = "GoogleChromeLabs";
11      repo = "simplehttp2server";
12      rev = version;
13      sha256 = "113mcfvy1m91wask5039mhr0187nlw325ac32785yl4bb4igi8aw";
14   };
16   goDeps = ./deps.nix;
18   meta = with lib; {
19      homepage = "https://github.com/GoogleChromeLabs/simplehttp2server";
20      description = "HTTP/2 server for development purposes";
21      license = licenses.asl20;
22      maintainers = with maintainers; [ yrashk ];
23      mainProgram = "simplehttp2server";
24   };