From 96e8bd9256e09849a4e6952f9238f4d6ff03bbf9 Mon Sep 17 00:00:00 2001 From: Guillaume Fournier Date: Mon, 28 Oct 2024 00:32:31 +0100 Subject: [PATCH] numbat: format according to RFC --- pkgs/by-name/nu/numbat/package.nix | 29 ++++++++++++++++++----------- 1 file changed, 18 insertions(+), 11 deletions(-) diff --git a/pkgs/by-name/nu/numbat/package.nix b/pkgs/by-name/nu/numbat/package.nix index 075701e2983d..05535b7c5652 100644 --- a/pkgs/by-name/nu/numbat/package.nix +++ b/pkgs/by-name/nu/numbat/package.nix @@ -1,12 +1,13 @@ -{ lib -, stdenv -, testers -, fetchFromGitHub -, fetchpatch -, rustPlatform -, darwin -, numbat -, tzdata +{ + lib, + stdenv, + testers, + fetchFromGitHub, + fetchpatch, + rustPlatform, + darwin, + numbat, + tzdata, }: rustPlatform.buildRustPackage rec { @@ -60,9 +61,15 @@ rustPlatform.buildRustPackage rec { ''; homepage = "https://numbat.dev"; changelog = "https://github.com/sharkdp/numbat/releases/tag/v${version}"; - license = with licenses; [ asl20 mit ]; + license = with licenses; [ + asl20 + mit + ]; mainProgram = "numbat"; - maintainers = with maintainers; [ giomf atemu ]; + maintainers = with maintainers; [ + giomf + atemu + ]; # Failing tests on Darwin. broken = stdenv.isDarwin; };