uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
27
pkgs/tools/system/systemd-journal2gelf/default.nix
Normal file
27
pkgs/tools/system/systemd-journal2gelf/default.nix
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
{ 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;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue