ripasso-cursive: cosmetic changes (#361736)
[NixPkgs.git] / pkgs / by-name / sy / systemd-journal2gelf / package.nix
blobcb319fbd52d82b8907d0cf09640182d45810c909
1 { lib, buildGoModule, fetchFromGitHub }:
3 buildGoModule rec {
4   pname = "SystemdJournal2Gelf";
5   version = "unstable-2023-03-10";
7   src = fetchFromGitHub {
8     owner = "parse-nl";
9     repo = "SystemdJournal2Gelf";
10     rev = "863a15df5ed2d50365bb9c27424e3b118ce404c0";
11     hash = "sha256-AwJq0xZAoIpBz9kGERfmZZTn28LbAKIl3gUsFKL3yvs=";
12   };
14   vendorHash = null;
16   ldflags = [ "-s" "-w" ];
18   doCheck = false;
20   meta = with lib; {
21     description = "Export entries from systemd's journal and send them to a graylog server using gelf";
22     homepage = "https://github.com/parse-nl/SystemdJournal2Gelf";
23     license = licenses.bsd2;
24     maintainers = with maintainers; [ fadenb fpletz ];
25     mainProgram = "SystemdJournal2Gelf";
26   };