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

24 lines
553 B
Nix
Raw Normal View History

{ lib, buildGoPackage, fetchFromGitHub }:
2017-03-01 07:24:26 +00:00
buildGoPackage rec {
pname = "httplab";
2020-06-14 17:22:53 +00: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 17:22:53 +00:00
sha256 = "0442nnpxyfl2gi9pilv7q6cxs2cd98wblg8d4nw6dx98yh4h99zs";
2017-03-01 07:24:26 +00:00
};
meta = with 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 ];
};
}