depot/third_party/nixpkgs/pkgs/tools/system/systemd-journal2gelf/default.nix
Default email 3a4df29a92 Project import generated by Copybara.
GitOrigin-RevId: 3d7435c638baffaa826b85459df0fff47f12317d
2022-06-16 19:23:12 +02:00

27 lines
729 B
Nix

{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "SystemdJournal2Gelf";
version = "unstable-2022-02-15";
src = fetchFromGitHub {
owner = "parse-nl";
repo = "SystemdJournal2Gelf";
rev = "86f9f41b26b6848345c2424fbf1ff907b876bb5b";
sha256 = "sha256-xsrKuZVN6Eb0vG98LbQnFqNxHthv+uL/h2HCDiFY0Oo=";
};
vendorSha256 = null;
ldflags = [ "-s" "-w" ];
doCheck = false;
meta = with lib; {
description = "Export entries from systemd's journal and send them to a graylog server using gelf";
homepage = "https://github.com/parse-nl/SystemdJournal2Gelf";
license = licenses.bsd2;
maintainers = with maintainers; [ fadenb fpletz ];
platforms = platforms.unix;
};
}