2017-02-28 23:24:26 -08:00
|
|
|
{ stdenv, buildGoPackage, fetchFromGitHub }:
|
|
|
|
|
|
|
|
buildGoPackage rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "httplab";
|
2020-06-14 10:22:53 -07:00
|
|
|
version = "0.4.0";
|
2017-02-28 23:24:26 -08:00
|
|
|
rev = "v${version}";
|
|
|
|
|
|
|
|
goPackagePath = "github.com/gchaincl/httplab";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "gchaincl";
|
|
|
|
repo = "httplab";
|
|
|
|
inherit rev;
|
2020-06-14 10:22:53 -07:00
|
|
|
sha256 = "0442nnpxyfl2gi9pilv7q6cxs2cd98wblg8d4nw6dx98yh4h99zs";
|
2017-02-28 23:24:26 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://github.com/gchaincl/httplab";
|
2017-02-28 23:24:26 -08:00
|
|
|
description = "Interactive WebServer";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ pradeepchhetri ];
|
|
|
|
};
|
|
|
|
}
|