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

24 lines
561 B
Nix
Raw Normal View History

2017-03-01 07:24:26 +00:00
{ stdenv, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
pname = "httplab";
version = "0.3.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;
sha256 = "1q9rp43z59nryfm79gci5a1gmqw552rqd4cki81rymbj3f6xvrf9";
2017-03-01 07:24:26 +00:00
};
meta = with stdenv.lib; {
homepage = https://github.com/gchaincl/httplab;
description = "Interactive WebServer";
license = licenses.mit;
maintainers = with maintainers; [ pradeepchhetri ];
};
}