httplab: init at 0.1.0

This commit is contained in:
Pradeep Chhetri 2017-03-01 12:54:26 +05:30 committed by Franz Pletz
parent fb3853cd71
commit 6c99a31c89
2 changed files with 25 additions and 0 deletions

View File

@ -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 ];
};
}

View File

@ -2148,6 +2148,8 @@ with pkgs;
gzrt = callPackage ../tools/compression/gzrt { };
httplab = callPackage ../tools/networking/httplab { };
partclone = callPackage ../tools/backup/partclone { };
partimage = callPackage ../tools/backup/partimage { };