1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-25 03:17:13 +00:00
nixpkgs/pkgs/servers/http/webhook/default.nix

23 lines
538 B
Nix
Raw Normal View History

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