grafana-loki,promtail: remove redundant meta.platforms and doCheck

already set by `buildGoModule`
This commit is contained in:
IndeedNotJames 2023-04-09 00:16:26 +02:00
parent 3a4bdd17dd
commit cf0f78a249
No known key found for this signature in database
GPG key ID: 0AD773CE46FD0F87

View file

@ -12,9 +12,9 @@ buildGoModule rec {
pname = "grafana-loki";
src = fetchFromGitHub {
rev = "v${version}";
owner = "grafana";
repo = "loki";
rev = "v${version}";
hash = "sha256-RPa3G1zrWzunyQOdNUQ/dZGJ/7sh2OGvoEqeYaT7Qv0=";
};
@ -48,13 +48,10 @@ buildGoModule rec {
"-X ${t}.Revision=unknown"
];
doCheck = true;
meta = with lib; {
description = "Like Prometheus, but for logs";
license = with licenses; [ agpl3Only asl20 ];
homepage = "https://grafana.com/oss/loki/";
maintainers = with maintainers; [ willibutz globin mmahut indeednotjames ];
platforms = platforms.unix;
};
}