From 160b2b769c3b8a6d1ae9947afa77520fa2887db7 Mon Sep 17 00:00:00 2001 From: Filippo Berto Date: Mon, 29 Jul 2024 16:07:14 +0200 Subject: [PATCH] ndn-cxx: format with nixfmt-rfc-style --- .../development/libraries/ndn-cxx/default.nix | 42 ++++++++++++------- 1 file changed, 28 insertions(+), 14 deletions(-) diff --git a/pkgs/development/libraries/ndn-cxx/default.nix b/pkgs/development/libraries/ndn-cxx/default.nix index 9074ecd90880..144d79262c84 100644 --- a/pkgs/development/libraries/ndn-cxx/default.nix +++ b/pkgs/development/libraries/ndn-cxx/default.nix @@ -1,14 +1,15 @@ -{ lib -, stdenv -, fetchFromGitHub -, doxygen -, pkg-config -, python3 -, python3Packages -, wafHook -, boost -, openssl -, sqlite +{ + lib, + stdenv, + fetchFromGitHub, + doxygen, + pkg-config, + python3, + python3Packages, + wafHook, + boost, + openssl, + sqlite, }: stdenv.mkDerivation rec { @@ -22,9 +23,19 @@ stdenv.mkDerivation rec { sha256 = "sha256-u9+QxqdCET1f5B54HF+Jk/YuQvhcYWsPNIVHi5l0XTM="; }; - nativeBuildInputs = [ doxygen pkg-config python3 python3Packages.sphinx wafHook ]; + nativeBuildInputs = [ + doxygen + pkg-config + python3 + python3Packages.sphinx + wafHook + ]; - buildInputs = [ boost openssl sqlite ]; + buildInputs = [ + boost + openssl + sqlite + ]; wafConfigureFlags = [ "--with-openssl=${openssl.dev}" @@ -58,6 +69,9 @@ stdenv.mkDerivation rec { ''; license = licenses.lgpl3; platforms = platforms.unix; - maintainers = with maintainers; [ sjmackenzie bertof ]; + maintainers = with maintainers; [ + sjmackenzie + bertof + ]; }; }