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 582038c
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 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
water-sucks
];
mainProgram = "bruno";
platforms = lib.platforms.linux ++ lib.platforms.darwin;
};
}

0 comments on commit 582038c

Please sign in to comment.