webhook: init at 2.6.8

This commit is contained in:
Alyssa Ross 2018-10-05 12:13:26 +01:00
parent bea3f18185
commit 7e3b43d75a
No known key found for this signature in database
GPG Key ID: C4844408C0657052
2 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,22 @@
{ lib, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
name = "webhook-${version}";
version = "2.6.8";
goPackagePath = "github.com/adnanh/webhook";
excludedPackages = [ "test" ];
src = fetchFromGitHub {
owner = "adnanh";
repo = "webhook";
rev = version;
sha256 = "05q6nv04ml1gr4k79czg03i3ifl05xq29iapkgrl3k0a36czxlgs";
};
meta = with lib; {
homepage = https://github.com/adnanh/webhook;
license = [ licenses.mit ];
description = "incoming webhook server that executes shell commands";
};
}

View File

@ -13690,6 +13690,8 @@ with pkgs;
webmetro = callPackage ../servers/webmetro { };
webhook = callPackage ../servers/http/webhook { };
winstone = callPackage ../servers/http/winstone { };
xinetd = callPackage ../servers/xinetd { };