python312Packages.types-aiobotocore: 2.15.2 -> 2.15.2.post3 (#361801)
[NixPkgs.git] / pkgs / by-name / sh / shoutrrr / package.nix
blob03ba0f9e4d3a8d99d4797ea28070dd211c2176e8
2   lib,
3   buildGoModule,
4   fetchFromGitHub,
5 }:
6 let
7   version = "0.8.0";
8 in
9 buildGoModule {
10   pname = "shoutrrr";
11   inherit version;
13   src = fetchFromGitHub {
14     repo = "shoutrrr";
15     owner = "containrrr";
16     rev = "refs/tags/v${version}";
17     hash = "sha256-DGyFo2oRZ39r1awqh5AXjOL2VShABarFbOMIcEXlWq4=";
18   };
20   vendorHash = "sha256-+LDA3Q6OSxHwKYoO5gtNUryB9EbLe2jJtUbLXnA2Lug=";
22   meta = {
23     description = "Notification library for gophers and their furry friends";
24     homepage = "https://github.com/containrrr/shoutrrr";
25     license = lib.licenses.mit;
26     maintainers = with lib.maintainers; [ JManch ];
27     platforms = lib.platforms.unix;
28     mainProgram = "shoutrrr";
29   };