aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/tools/networking/httplab/default.nix
blob: f39b061c34db01f1c4d60ed504ab21339afc9636 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ stdenv, buildGoPackage, fetchFromGitHub }:

buildGoPackage rec {
  pname = "httplab";
  version = "0.3.0";
  rev = "v${version}";

  goPackagePath = "github.com/gchaincl/httplab";

  src = fetchFromGitHub {
    owner = "gchaincl";
    repo = "httplab";
    inherit rev;
    sha256 = "1q9rp43z59nryfm79gci5a1gmqw552rqd4cki81rymbj3f6xvrf9";
  };

  meta = with stdenv.lib; {
    homepage = "https://github.com/gchaincl/httplab";
    description = "Interactive WebServer";
    license = licenses.mit;
    maintainers = with maintainers; [ pradeepchhetri ];
  };
}