Skip to content

Commit

Permalink
bruno: remove with lib;, order meta attrs
Browse files Browse the repository at this point in the history
  • Loading branch information
gepbird committed Nov 6, 2024
1 parent f90a7c4 commit b911949
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions pkgs/by-name/br/bruno/package.nix
Original file line number Diff line number Diff line change
Expand Up @@ -158,19 +158,19 @@ buildNpmPackage rec {

passthru.updateScript = nix-update-script { };

meta = with lib; {
meta = {
description = "Open-source IDE For exploring and testing APIs";
homepage = "https://www.usebruno.com";
platforms = platforms.linux ++ platforms.darwin;
license = licenses.mit;
maintainers = with maintainers; [
license = lib.licenses.mit;
mainProgram = "bruno";
maintainers = with lib.maintainers; [
gepbird
kashw2
lucasew
mattpolzin
water-sucks
redyf
];
mainProgram = "bruno";
platforms = lib.platforms.linux ++ lib.platforms.darwin;
};
}

0 comments on commit b911949

Please sign in to comment.