nixpkgs/pkgs/tools/networking/httplab/default.nix

24 lines
563 B
Nix
Raw Normal View History

2017-03-01 07:24:26 +00:00
{ stdenv, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
pname = "httplab";
2020-06-14 18:22:53 +01:00
version = "0.4.0";
2017-03-01 07:24:26 +00:00
rev = "v${version}";
goPackagePath = "github.com/gchaincl/httplab";
src = fetchFromGitHub {
owner = "gchaincl";
repo = "httplab";
inherit rev;
2020-06-14 18:22:53 +01:00
sha256 = "0442nnpxyfl2gi9pilv7q6cxs2cd98wblg8d4nw6dx98yh4h99zs";
2017-03-01 07:24:26 +00:00
};
meta = with stdenv.lib; {
homepage = "https://github.com/gchaincl/httplab";
2017-03-01 07:24:26 +00:00
description = "Interactive WebServer";
license = licenses.mit;
maintainers = with maintainers; [ pradeepchhetri ];
};
}