mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
httplab: init at 0.1.0
This commit is contained in:
parent
fb3853cd71
commit
6c99a31c89
2 changed files with 25 additions and 0 deletions
23
pkgs/tools/networking/httplab/default.nix
Normal file
23
pkgs/tools/networking/httplab/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue