numbat: format according to RFC

This commit is contained in:
Guillaume Fournier 2024-10-28 00:32:31 +01:00
parent 4f8f9ff867
commit 96e8bd9256

View File

@ -1,12 +1,13 @@
{ lib {
, stdenv lib,
, testers stdenv,
, fetchFromGitHub testers,
, fetchpatch fetchFromGitHub,
, rustPlatform fetchpatch,
, darwin rustPlatform,
, numbat darwin,
, tzdata numbat,
tzdata,
}: }:
rustPlatform.buildRustPackage rec { rustPlatform.buildRustPackage rec {
@ -60,9 +61,15 @@ rustPlatform.buildRustPackage rec {
''; '';
homepage = "https://numbat.dev"; homepage = "https://numbat.dev";
changelog = "https://github.com/sharkdp/numbat/releases/tag/v${version}"; changelog = "https://github.com/sharkdp/numbat/releases/tag/v${version}";
license = with licenses; [ asl20 mit ]; license = with licenses; [
asl20
mit
];
mainProgram = "numbat"; mainProgram = "numbat";
maintainers = with maintainers; [ giomf atemu ]; maintainers = with maintainers; [
giomf
atemu
];
# Failing tests on Darwin. # Failing tests on Darwin.
broken = stdenv.isDarwin; broken = stdenv.isDarwin;
}; };