about summary refs log tree commit diff
path: root/pkgs/development/libraries/ndn-cxx
diff options
context:
space:
mode:
authorFilippo Berto <berto.f@protonmail.com>2022-12-05 10:57:40 +0100
committerFilippo Berto <berto.f@protonmail.com>2023-02-14 18:57:56 +0100
commitb3c41de572f8601dcd3a89eccf2ee1eafe36ee36 (patch)
tree78532a584cc595fe8ce705f285f3e5b8ddf64512 /pkgs/development/libraries/ndn-cxx
parentc1ab15495e72643b205887db388746f5994901aa (diff)
nfd: 0.7.1 -> 22.12
Diffstat (limited to 'pkgs/development/libraries/ndn-cxx')
-rw-r--r--pkgs/development/libraries/ndn-cxx/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/libraries/ndn-cxx/default.nix b/pkgs/development/libraries/ndn-cxx/default.nix
index e7cc6e705b670..c7977ed89d99c 100644
--- a/pkgs/development/libraries/ndn-cxx/default.nix
+++ b/pkgs/development/libraries/ndn-cxx/default.nix
@@ -33,10 +33,10 @@ stdenv.mkDerivation rec {
     "--with-tests"
   ];
 
-  doCheck = false;
+  doCheck = false; # some tests fail in upstream, some fail because of the sandbox environment
   checkPhase = ''
     runHook preCheck
-    LD_PRELOAD=build/libndn-cxx.so build/unit-tests # some tests fail in upstream, some fail because of the sandbox environment
+    LD_PRELOAD=build/libndn-cxx.so build/unit-tests
     runHook postCheck
   '';