about summary refs log tree commit diff
path: root/pkgs/servers/http/webhook/default.nix
blob: fe428926704ee36d8223e0c531d768fa5699c07a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ lib, buildGoPackage, fetchFromGitHub }:

buildGoPackage rec {
  pname = "webhook";
  version = "2.7.0";

  goPackagePath = "github.com/adnanh/webhook";
  excludedPackages = [ "test" ];

  src = fetchFromGitHub {
    owner = "adnanh";
    repo = "webhook";
    rev = version;
    sha256 = "1spiqjy0z84z96arf57bn6hyvfsd6l8w6nv874mbis6vagifikci";
  };

  meta = with lib; {
    homepage = "https://github.com/adnanh/webhook";
    license = [ licenses.mit ];
    description = "incoming webhook server that executes shell commands";
  };
}