Unverified Commit a4c9169f authored by Pol Dellaiera's avatar Pol Dellaiera Committed by GitHub
Browse files

Merge pull request #327445 from JManch/shoutrrr

shoutrrr: init at 0.8.0
parents 11c32800 ec62c958
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -9537,6 +9537,12 @@
    githubId = 8900;
    name = "Johan Magnus Jonsson";
  };
  JManch = {
    email = "jmanch@protonmail.com";
    github = "JManch";
    githubId = 61563764;
    name = "Joshua Manchester";
  };
  jmarmstrong1207 = {
    name = "James Armstrong";
    email = "jm.armstrong1207@gmail.com";
+30 −0
Original line number Diff line number Diff line
{
  lib,
  buildGoModule,
  fetchFromGitHub,
}:
let
  version = "0.8.0";
in
buildGoModule {
  pname = "shoutrrr";
  inherit version;

  src = fetchFromGitHub {
    repo = "shoutrrr";
    owner = "containrrr";
    rev = "refs/tags/v${version}";
    hash = "sha256-DGyFo2oRZ39r1awqh5AXjOL2VShABarFbOMIcEXlWq4=";
  };

  vendorHash = "sha256-+LDA3Q6OSxHwKYoO5gtNUryB9EbLe2jJtUbLXnA2Lug=";

  meta = {
    description = "Notification library for gophers and their furry friends";
    homepage = "https://github.com/containrrr/shoutrrr";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ JManch ];
    platforms = lib.platforms.unix;
    mainProgram = "shoutrrr";
  };
}