ndn-cxx: format with nixfmt-rfc-style
This commit is contained in:
@@ -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
|
||||
];
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user