summary refs log tree commit diff
path: root/pkgs/tools/networking/httplab/default.nix
blob: 8ec0ce2847ddb27d761a2ac8725bde8628817109 (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
{ stdenv, buildGoPackage, fetchFromGitHub }:

buildGoPackage rec {
  name = "httplab-${version}";
  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 ];
  };
}