forked from mirrors/nixpkgs
693c27b111
Adding mmahut as maintaner
33 lines
812 B
Nix
33 lines
812 B
Nix
{ stdenv, buildGoPackage, fetchFromGitHub, makeWrapper, systemd }:
|
|
|
|
buildGoPackage rec {
|
|
version = "1.0.0";
|
|
pname = "grafana-loki";
|
|
goPackagePath = "github.com/grafana/loki";
|
|
|
|
doCheck = true;
|
|
|
|
src = fetchFromGitHub {
|
|
rev = "v${version}";
|
|
owner = "grafana";
|
|
repo = "loki";
|
|
sha256 = "0qqmxrbiph268i5c8i6wpcihspdcglfxd4hy6ag03bl66rciq8nb";
|
|
};
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
buildInputs = [ systemd.dev ];
|
|
|
|
preFixup = ''
|
|
wrapProgram $bin/bin/promtail \
|
|
--prefix LD_LIBRARY_PATH : "${systemd.lib}/lib"
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Like Prometheus, but for logs";
|
|
license = licenses.asl20;
|
|
homepage = "https://grafana.com/loki";
|
|
maintainers = with maintainers; [ willibutz globin mmahut ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|