ndn-cxx: format with nixfmt-rfc-style

This commit is contained in:
Filippo Berto
2024-10-01 18:00:03 +02:00
committed by Sandro Jäckel
parent 5a5123620f
commit 160b2b769c
+28 -14
View File
@@ -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
];
};
}