Commit 183b20e9 authored by Jan Likar's avatar Jan Likar
Browse files

kdash: 0.6.0 -> 0.6.1

Due to a breaking change in Rust compiler 1.80.0 cargo-clone cannot be built.
See NixOS#332957.

Version 0.6.1 includes a fix for this issue and several dependency updates.
Changelog: https://github.com/kdash-rs/kdash/blob/main/CHANGELOG.md
parent 57746cee
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -12,13 +12,13 @@

rustPlatform.buildRustPackage rec {
  pname = "kdash";
  version = "0.6.0";
  version = "0.6.1";

  src = fetchFromGitHub {
    owner = "kdash-rs";
    repo = pname;
    rev = "v${version}";
    sha256 = "sha256-XY6aBqLHbif3RsytNm7JnDXspICJuhS7SJ+ApwTeqX4=";
    sha256 = "sha256-IpF5uXRxHBmfWkBBJjNvDsyQG5nzFjKbCmmGpG3howo=";
  };

  nativeBuildInputs = [ perl python3 pkg-config ];
@@ -26,7 +26,7 @@ rustPlatform.buildRustPackage rec {
  buildInputs = [ openssl xorg.xcbutil ]
    ++ lib.optional stdenv.isDarwin AppKit;

  cargoHash = "sha256-ODQf+Fvil+oBJcM38h1HdrcgtJw0b65f5auLuZtUgik=";
  cargoHash = "sha256-jm0UCKDy6TrogMPavB86lvk8yKZXubTGGbApk+oP2RQ=";

  meta = with lib; {
    description = "A simple and fast dashboard for Kubernetes";