evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / kl / klog-rs / package.nix
blobef9f4605c5442d0265bececa71fe825415415980
2   lib,
3   fetchFromGitHub,
4   rustPlatform,
5   stdenv,
6 }:
8 rustPlatform.buildRustPackage rec {
9   pname = "klog-rs";
10   version = "0.1.0";
12   src = fetchFromGitHub {
13     owner = "tobifroe";
14     repo = "klog";
15     rev = version;
16     hash = "sha256-MAHLTNKN0t0rUXd4f238/jcaUlcTdC3IvaviMRu6gKg=";
17   };
18   cargoHash = "sha256-u+kctG+38Z2xYTA9h0OY4L1zzKyAT2Wlwf08zSqxV0I=";
19   checkFlags = [
20     # this integration test depends on a running kubernetes cluster
21     "--skip=k8s::tests::test_get_pod_list"
22   ];
24   meta = {
25     description = "Tool to tail logs of multiple Kubernetes pods simultaneously";
26     homepage = "https://github.com/tobifroe/klog";
27     changelog = "https://github.com/tobifroe/klog/releases/tag/${version}";
28     license = lib.licenses.mit;
29     mainProgram = "klog";
30     maintainers = with lib.maintainers; [ tobifroe ];
31     broken = stdenv.hostPlatform.isDarwin;
32   };