nixpkgs/pkgs/servers/http/webhook/default.nix

23 lines
538 B
Nix
Raw Normal View History

2018-10-05 11:13:26 +00:00
{ lib, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
pname = "webhook";
2020-06-15 05:53:10 +00:00
version = "2.7.0";
2018-10-05 11:13:26 +00:00
goPackagePath = "github.com/adnanh/webhook";
excludedPackages = [ "test" ];
src = fetchFromGitHub {
owner = "adnanh";
repo = "webhook";
rev = version;
2020-06-15 05:53:10 +00:00
sha256 = "1spiqjy0z84z96arf57bn6hyvfsd6l8w6nv874mbis6vagifikci";
2018-10-05 11:13:26 +00:00
};
meta = with lib; {
homepage = "https://github.com/adnanh/webhook";
2018-10-05 11:13:26 +00:00
license = [ licenses.mit ];
description = "incoming webhook server that executes shell commands";
};
}