evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / ma / matrix-hook / package.nix
blob05e78621ee15d5b667c9cdc0efde70a781e55ed7
1 { lib, buildGoModule, fetchFromGitHub }:
3 buildGoModule rec {
4   pname = "matrix-hook";
5   version = "1.0.0";
6   src = fetchFromGitHub {
7     owner = "pinpox";
8     repo = "matrix-hook";
9     rev = "v${version}";
10     hash = "sha256-YmDsibVlAWLEG5QcqDImVb6RJfrfW6zrFnOEMO3Zxcw=";
11   };
12   vendorHash = "sha256-185Wz9IpJRBmunl+KGj/iy37YeszbT3UYzyk9V994oQ=";
13   postInstall = ''
14     install message.html.tmpl -Dt $out
15   '';
17   meta = with lib; {
18     description = "Simple webhook for matrix";
19     mainProgram = "matrix-hook";
20     homepage = "https://github.com/pinpox/matrix-hook";
21     license = licenses.gpl3;
22     maintainers = with maintainers; [ pinpox mic92 zowoq ];
23   };