Unverified Commit 6d9d8c86 authored by isabel's avatar isabel Committed by GitHub
Browse files

dysk: 3.3.0 -> 3.4.0, adopt by osbm (#460631)

parents 599231e6 b02b789a
Loading
Loading
Loading
Loading
+9 −8
Original line number Diff line number Diff line
@@ -7,16 +7,16 @@

rustPlatform.buildRustPackage rec {
  pname = "dysk";
  version = "3.3.0";
  version = "3.4.0";

  src = fetchFromGitHub {
    owner = "Canop";
    repo = "dysk";
    rev = "v${version}";
    hash = "sha256-trqHMlBA2s5l0ay3/e6hzMZTtKndrHRTy1LhuLwrJb4=";
    tag = "v${version}";
    hash = "sha256-0P7JySrgIui6sWh/JSqGqAMbI9cqeAkSdPuRtJB/Hec=";
  };

  cargoHash = "sha256-uloX/Mk4m7jEU5z5cb/gSuCLEGhG9qHTCQwjy+FCUsk=";
  cargoHash = "sha256-UuJ7ya/qLU2kmAhP8aucDREXKjdTaiKlzbSgDZXj54o=";

  nativeBuildInputs = [
    installShellFiles
@@ -27,15 +27,16 @@ rustPlatform.buildRustPackage rec {
    installShellCompletion $releaseDir/build/*/out/{dysk.bash,dysk.fish,_dysk}
  '';

  meta = with lib; {
  meta = {
    description = "Get information on your mounted disks";
    homepage = "https://github.com/Canop/dysk";
    changelog = "https://github.com/Canop/dysk/blob/${src.rev}/CHANGELOG.md";
    license = licenses.mit;
    maintainers = with maintainers; [
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [
      koral
      osbm
    ];
    mainProgram = "dysk";
    platforms = platforms.linux ++ platforms.darwin;
    platforms = lib.platforms.linux ++ lib.platforms.darwin;
  };
}