2e6bf42a22
There ver very many conflicts, basically all due to name -> pname+version. Fortunately, almost everything was auto-resolved by kdiff3, and for now I just fixed up a couple evaluation problems, as verified by the tarball job. There might be some fallback to these conflicts, but I believe it should be minimal. Hydra nixpkgs: ?compare=1538299
33 lines
806 B
Nix
33 lines
806 B
Nix
{ stdenv, buildGoPackage, fetchFromGitHub, makeWrapper, systemd }:
|
|
|
|
buildGoPackage rec {
|
|
version = "0.3.0";
|
|
pname = "grafana-loki";
|
|
goPackagePath = "github.com/grafana/loki";
|
|
|
|
doCheck = true;
|
|
|
|
src = fetchFromGitHub {
|
|
rev = "v${version}";
|
|
owner = "grafana";
|
|
repo = "loki";
|
|
sha256 = "1b61fqk6ah4qps4nq7ypdax4i7pkhjxdw4qrhc1zvzzhxr7x13rs";
|
|
};
|
|
|
|
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 ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|