From 3d728b1d9af87fea4b663af7ef5f07bc98497e7b Mon Sep 17 00:00:00 2001 From: Noa Aarts Date: Mon, 18 Nov 2024 10:37:37 +0100 Subject: [PATCH] quill: format using nixfmt --- pkgs/tools/security/quill/default.nix | 26 ++++++++++++++++++++++---- 1 file changed, 22 insertions(+), 4 deletions(-) diff --git a/pkgs/tools/security/quill/default.nix b/pkgs/tools/security/quill/default.nix index 3aa2e6525b62..07cf78181d01 100644 --- a/pkgs/tools/security/quill/default.nix +++ b/pkgs/tools/security/quill/default.nix @@ -1,4 +1,15 @@ -{ lib, stdenv, rustPlatform, fetchFromGitHub, openssl, Security, libiconv, pkg-config, protobuf, buildPackages }: +{ + lib, + stdenv, + rustPlatform, + fetchFromGitHub, + openssl, + Security, + libiconv, + pkg-config, + protobuf, + buildPackages, +}: rustPlatform.buildRustPackage rec { pname = "quill"; @@ -39,9 +50,16 @@ rustPlatform.buildRustPackage rec { }; }; - nativeBuildInputs = [ pkg-config protobuf ]; - buildInputs = [ openssl ] - ++ lib.optionals stdenv.hostPlatform.isDarwin [ Security libiconv ]; + nativeBuildInputs = [ + pkg-config + protobuf + ]; + buildInputs = + [ openssl ] + ++ lib.optionals stdenv.hostPlatform.isDarwin [ + Security + libiconv + ]; meta = with lib; { homepage = "https://github.com/dfinity/quill";