quill: format using nixfmt

This commit is contained in:
Noa Aarts 2024-11-18 10:37:37 +01:00
parent db12662f60
commit 3d728b1d9a
No known key found for this signature in database
GPG Key ID: 1850932741EFF672

View File

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