nixpkgs/pkgs/servers/monitoring/loki/default.nix

39 lines
1.0 KiB
Nix
Raw Normal View History

2019-08-02 22:19:14 +00:00
{ stdenv, buildGoPackage, fetchFromGitHub, makeWrapper, systemd }:
2019-03-01 07:18:57 +00:00
buildGoPackage rec {
2020-05-25 10:35:16 +00:00
version = "1.5.0";
pname = "grafana-loki";
2019-03-01 07:18:57 +00:00
goPackagePath = "github.com/grafana/loki";
doCheck = true;
src = fetchFromGitHub {
rev = "v${version}";
owner = "grafana";
repo = "loki";
2020-05-25 10:35:16 +00:00
sha256 = "137lnd69p8qfg2z8l32dr1mrk2lhrxjx392xfij11sy5i9blfc3n";
2019-03-01 07:18:57 +00:00
};
postPatch = ''
substituteInPlace pkg/distributor/distributor_test.go --replace \
'"eth0", "en0", "lo0"' \
'"lo"'
'';
2019-08-02 22:19:14 +00:00
nativeBuildInputs = [ makeWrapper ];
2019-12-15 03:22:22 +00:00
buildInputs = stdenv.lib.optionals stdenv.isLinux [ systemd.dev ];
2019-08-02 22:19:14 +00:00
2019-12-15 03:22:22 +00:00
preFixup = stdenv.lib.optionalString stdenv.isLinux ''
wrapProgram $out/bin/promtail \
2019-08-02 22:19:14 +00:00
--prefix LD_LIBRARY_PATH : "${systemd.lib}/lib"
'';
2019-03-01 07:18:57 +00:00
meta = with stdenv.lib; {
description = "Like Prometheus, but for logs";
2019-03-01 07:18:57 +00:00
license = licenses.asl20;
2019-12-15 03:22:22 +00:00
homepage = "https://grafana.com/oss/loki/";
maintainers = with maintainers; [ willibutz globin mmahut ];
2019-12-15 03:22:22 +00:00
platforms = platforms.unix;
2019-03-01 07:18:57 +00:00
};
}