Skip to content

Commit

Permalink
[Backport release-24.11] wlink: fix overuse of with lib (#358425)
Browse files Browse the repository at this point in the history
  • Loading branch information
Aleksanaa authored Nov 23, 2024
2 parents 17d0037 + 8c64d51 commit 9d2cd2a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions pkgs/by-name/wl/wlink/package.nix
Original file line number Diff line number Diff line change
Expand Up @@ -36,17 +36,17 @@ rustPlatform.buildRustPackage rec {
};
};

meta = with lib; {
meta = {
description = "WCH-Link flash tool for WCH's RISC-V MCUs(CH32V, CH56X, CH57X, CH58X, CH59X, CH32L103, CH32X035, CH641, CH643)";
homepage = "https://github.com/ch32-rs/wlink";
changelog = "https://github.com/ch32-rs/wlink/releases/tag/v${version}";
license = with licenses; [
license = with lib.licenses; [
mit # or
asl20
];
platforms = with platforms; linux ++ darwin ++ windows;
platforms = with lib.platforms; linux ++ darwin ++ windows;
broken = !stdenv.hostPlatform.isLinux;
maintainers = with maintainers; [ jwillikers ];
maintainers = with lib.maintainers; [ jwillikers ];
mainProgram = "wlink";
};
}

0 comments on commit 9d2cd2a

Please sign in to comment.