fork
Configure Feed
Select the types of activity you want to include in your feed.
lol
fork
Configure Feed
Select the types of activity you want to include in your feed.
1{ stdenv, buildGoPackage, fetchFromGitHub }:
2
3buildGoPackage rec {
4 name = "httplab-${version}";
5 version = "0.3.0";
6 rev = "v${version}";
7
8 goPackagePath = "github.com/gchaincl/httplab";
9
10 src = fetchFromGitHub {
11 owner = "gchaincl";
12 repo = "httplab";
13 inherit rev;
14 sha256 = "1q9rp43z59nryfm79gci5a1gmqw552rqd4cki81rymbj3f6xvrf9";
15 };
16
17 meta = with stdenv.lib; {
18 homepage = https://github.com/gchaincl/httplab;
19 description = "Interactive WebServer";
20 license = licenses.mit;
21 maintainers = with maintainers; [ pradeepchhetri ];
22 };
23}