1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-01 18:12:46 +00:00
nixpkgs/pkgs/servers/http/webhook/default.nix

23 lines
536 B
Nix
Raw Normal View History

2018-10-05 12:13:26 +01:00
{ lib, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
pname = "webhook";
2018-10-05 12:13:26 +01:00
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";
};
}