klog-rs: init at 0.0.3 (#345863)
This commit is contained in:
@@ -21931,6 +21931,12 @@
|
||||
githubId = 2164118;
|
||||
name = "Tobias Bora";
|
||||
};
|
||||
tobifroe = {
|
||||
email = "hi@froelich.dev";
|
||||
github = "tobifroe";
|
||||
githubId = 40638719;
|
||||
name = "Tobias Frölich";
|
||||
};
|
||||
tobim = {
|
||||
email = "nix@tobim.fastmail.fm";
|
||||
github = "tobim";
|
||||
|
||||
@@ -0,0 +1,33 @@
|
||||
{
|
||||
lib,
|
||||
fetchFromGitHub,
|
||||
rustPlatform,
|
||||
stdenv,
|
||||
}:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "klog-rs";
|
||||
version = "0.0.3";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "tobifroe";
|
||||
repo = "klog";
|
||||
rev = version;
|
||||
hash = "sha256-HEGxg277483ZZpXKFIBTAITKie/iBfbz9KmtqzlGC3E=";
|
||||
};
|
||||
cargoHash = "sha256-mOFzlq5AEks9vwjk2FxTGLyw6RkI44kml2t8r1UsdOk=";
|
||||
checkFlags = [
|
||||
# this integration test depends on a running kubernetes cluster
|
||||
"--skip=k8s::tests::test_get_pod_list"
|
||||
];
|
||||
|
||||
meta = {
|
||||
description = "Tool to tail logs of multiple Kubernetes pods simultaneously";
|
||||
homepage = "https://github.com/tobifroe/klog";
|
||||
changelog = "https://github.com/tobifroe/klog/releases/tag/${version}";
|
||||
license = lib.licenses.mit;
|
||||
mainProgram = "klog";
|
||||
maintainers = with lib.maintainers; [ tobifroe ];
|
||||
broken = stdenv.hostPlatform.isDarwin;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user