summary refs log tree commit diff
path: root/pkgs/tools/networking/httplab/default.nix
blob: fb50ddc9eb4e71031c32c135c5a8acbcd15ab7cf (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.1.0";
  rev = "v${version}";

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

  src = fetchFromGitHub {
    owner = "gchaincl";
    repo = "httplab";
    inherit rev;
    sha256 = "19d0aasaxayvw25m9n2gahyq590dwym7k0fng8pqvrgc2mpl0ncw";
  };

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