24 lines
553 B
Nix
Raw Permalink Normal View History

{ lib, buildGoPackage, fetchFromGitHub }:
2017-03-01 12:54:26 +05:30
buildGoPackage rec {
pname = "httplab";
2020-06-14 17:22:53 +00:00
version = "0.4.0";
2017-03-01 12:54:26 +05:30
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 12:54:26 +05:30
};
meta = with lib; {
homepage = "https://github.com/gchaincl/httplab";
2017-03-01 12:54:26 +05:30
description = "Interactive WebServer";
license = licenses.mit;
maintainers = with maintainers; [ pradeepchhetri ];
};
}