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"; };