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