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