2017-03-01 07:24:26 +00:00
|
|
|
{ stdenv, buildGoPackage, fetchFromGitHub }:
|
|
|
|
|
|
|
|
buildGoPackage rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
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; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/gchaincl/httplab";
|
2017-03-01 07:24:26 +00:00
|
|
|
description = "Interactive WebServer";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ pradeepchhetri ];
|
|
|
|
};
|
|
|
|
}
|