mqttui: format with nixfmt

This commit is contained in:
Fabian Affolter 2024-04-20 12:31:01 +02:00
parent 1c455ee3ff
commit be74a1bf4b
1 changed files with 10 additions and 6 deletions

View File

@ -1,8 +1,9 @@
{ lib
, stdenv
, fetchFromGitHub
, rustPlatform
, darwin
{
lib,
stdenv,
fetchFromGitHub,
rustPlatform,
darwin,
}:
rustPlatform.buildRustPackage rec {
@ -34,7 +35,10 @@ rustPlatform.buildRustPackage rec {
homepage = "https://github.com/EdJoPaTo/mqttui";
changelog = "https://github.com/EdJoPaTo/mqttui/blob/v${version}/CHANGELOG.md";
license = licenses.gpl3Only;
maintainers = with maintainers; [ fab sikmir ];
maintainers = with maintainers; [
fab
sikmir
];
mainProgram = "mqttui";
};
}