From a72e7d1cd29ba801da1d989d98d88d81f6295b4c Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Tue, 3 Dec 2024 11:46:01 +0100 Subject: [PATCH] rates:format with nixfmt --- pkgs/tools/misc/rates/default.nix | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/pkgs/tools/misc/rates/default.nix b/pkgs/tools/misc/rates/default.nix index 5bcb6898b7e9..25cf21c5f59d 100644 --- a/pkgs/tools/misc/rates/default.nix +++ b/pkgs/tools/misc/rates/default.nix @@ -1,8 +1,9 @@ -{ lib -, stdenv -, fetchFromGitHub -, rustPlatform -, Security +{ + lib, + stdenv, + fetchFromGitHub, + rustPlatform, + Security, }: rustPlatform.buildRustPackage rec { @@ -24,7 +25,10 @@ rustPlatform.buildRustPackage rec { description = "CLI tool that brings currency exchange rates right into your terminal"; homepage = "https://github.com/lunush/rates"; changelog = "https://github.com/lunush/rates/releases/tag/${version}"; - license = with licenses; [ asl20 /* or */ mit ]; + license = with licenses; [ + asl20 + mit + ]; maintainers = with maintainers; [ fab ]; mainProgram = "rates"; };