mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-21 11:34:13 +00:00
kdash: init at 0.2.4
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
This commit is contained in:
parent
57c90b8956
commit
01ede6f1ba
34
pkgs/development/tools/kdash/default.nix
Normal file
34
pkgs/development/tools/kdash/default.nix
Normal file
@ -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…
Reference in New Issue
Block a user