summaryrefslogtreecommitdiffstats
path: root/pkgs/tools
diff options
context:
space:
mode:
authorPradeep Chhetri <pradeep.chhetri@netradyne.com>2017-03-01 12:54:26 +0530
committerFranz Pletz <fpletz@fnordicwalking.de>2017-03-03 17:35:31 +0100
commit6c99a31c89caae36aca6658cf236c118d9a5de95 (patch)
tree0f554694294277fa41d6e3f5222f98bc12ee390e /pkgs/tools
parentfb3853cd71b5229925ce69f4d7e9b42f6234ff25 (diff)
httplab: init at 0.1.0
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/networking/httplab/default.nix23
1 files changed, 23 insertions, 0 deletions
diff --git a/pkgs/tools/networking/httplab/default.nix b/pkgs/tools/networking/httplab/default.nix
new file mode 100644
index 000000000000..fb50ddc9eb4e
--- /dev/null
+++ b/pkgs/tools/networking/httplab/default.nix
@@ -0,0 +1,23 @@
+{ stdenv, buildGoPackage, fetchFromGitHub }:
+
+buildGoPackage rec {
+ name = "httplab-${version}";
+ version = "0.1.0";
+ rev = "v${version}";
+
+ goPackagePath = "github.com/gchaincl/httplab";
+
+ src = fetchFromGitHub {
+ owner = "gchaincl";
+ repo = "httplab";
+ inherit rev;
+ sha256 = "19d0aasaxayvw25m9n2gahyq590dwym7k0fng8pqvrgc2mpl0ncw";
+ };
+
+ meta = with stdenv.lib; {
+ homepage = https://github.com/gchaincl/httplab;
+ description = "Interactive WebServer";
+ license = licenses.mit;
+ maintainers = with maintainers; [ pradeepchhetri ];
+ };
+}