kdash: init at 0.2.4

Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
main
Matthias Beyer 3 years ago
parent 57c90b8956
commit 01ede6f1ba
  1. 34
      pkgs/development/tools/kdash/default.nix
  2. 2
      pkgs/top-level/all-packages.nix

@ -0,0 +1,34 @@
{ lib, stdenv
, fetchFromGitHub
, rustPlatform
, pkg-config
, perl
, python3
, openssl
, xorg
}:
rustPlatform.buildRustPackage rec {
pname = "kdash";
version = "0.2.4";
src = fetchFromGitHub {
owner = "kdash-rs";
repo = pname;
rev = "v${version}";
sha256 = "09f9qkab2scass4p2vxkhyqslcf32kvpxi1zfa23p72v681jp0c8";
};
nativeBuildInputs = [ perl python3 pkg-config ];
buildInputs = [ openssl xorg.xcbutil ];
cargoSha256 = "0jbyvjgxcjw610nd2i6d3jfmhv1lwsl8ss4fd3kwczsms28frx5c";
meta = with lib; {
description = "A simple and fast dashboard for Kubernetes";
homepage = "https://github.com/kdash-rs/kdash";
license = with licenses; [ mit ];
maintainers = with maintainers; [ matthiasbeyer ];
};
}

@ -6686,6 +6686,8 @@ with pkgs;
inherit (darwin.apple_sdk.frameworks) AppKit;
};
kdash = callPackage ../development/tools/kdash { };
kdbplus = pkgsi686Linux.callPackage ../applications/misc/kdbplus { };
keepalived = callPackage ../tools/networking/keepalived { };

Loading…
Cancel
Save