From 6dd5d4a5d211e67b7f04f4239783d933032fc2e7 Mon Sep 17 00:00:00 2001 From: Mario Liguori <76066109+archer-65@users.noreply.github.com> Date: Sat, 3 Dec 2022 16:05:41 +0100 Subject: [PATCH] Review formatting --- .../mailreaders/notmuch/notmuch-mailmover.nix | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/pkgs/applications/networking/mailreaders/notmuch/notmuch-mailmover.nix b/pkgs/applications/networking/mailreaders/notmuch/notmuch-mailmover.nix index b51f57e77c87..12a2437121a5 100644 --- a/pkgs/applications/networking/mailreaders/notmuch/notmuch-mailmover.nix +++ b/pkgs/applications/networking/mailreaders/notmuch/notmuch-mailmover.nix @@ -1,9 +1,8 @@ -{ - notmuch, - lib, - stdenv, - fetchFromGitHub, - rustPlatform, +{ notmuch +, lib +, stdenv +, fetchFromGitHub +, rustPlatform }: rustPlatform.buildRustPackage rec { pname = "notmuch-mailmover"; @@ -16,7 +15,7 @@ rustPlatform.buildRustPackage rec { sha256 = "sha256-b2Q1JcXIp56Niv5kdPgQSM91e8hPPdyhWIG4f7kQn78="; }; - buildInputs = [notmuch]; + buildInputs = [ notmuch ]; cargoSha256 = "sha256-AW0mCdQN3WJhSErJ/MqnNIsRX+C6Pb/zHCQh7v/70MU="; @@ -24,7 +23,7 @@ rustPlatform.buildRustPackage rec { description = "Application to assign notmuch tagged mails to IMAP folders"; homepage = "https://github.com/michaeladler/notmuch-mailmover/"; license = licenses.asl20; - maintainers = with maintainers; [michaeladler archer-65]; + maintainers = with maintainers; [ michaeladler archer-65 ]; platforms = platforms.all; }; }