about summary refs log tree commit diff
path: root/pkgs/tools/security/hashdeep
diff options
context:
space:
mode:
authorBen Siraphob <bensiraphob@gmail.com>2021-03-04 14:36:19 +0700
committerBen Siraphob <bensiraphob@gmail.com>2021-03-06 21:01:41 +0700
commit4dc3d2e4eec4a8eb5e8be9b104c9946685aa97eb (patch)
tree74b76ec61e3a9ba9948f2d9ee1183eb16d596680 /pkgs/tools/security/hashdeep
parentf0f62c22978e8c58b4ffbfc0f89e2de0551fbf60 (diff)
hashdeep: add darwin build failure note
Diffstat (limited to 'pkgs/tools/security/hashdeep')
-rw-r--r--pkgs/tools/security/hashdeep/default.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/tools/security/hashdeep/default.nix b/pkgs/tools/security/hashdeep/default.nix
index 9c155a63afeee..702a40ab8b8dc 100644
--- a/pkgs/tools/security/hashdeep/default.nix
+++ b/pkgs/tools/security/hashdeep/default.nix
@@ -17,6 +17,9 @@ stdenv.mkDerivation rec {
     description = "A set of cross-platform tools to compute hashes";
     homepage = "https://github.com/jessek/hashdeep";
     license = licenses.gpl2;
+    # Build fails on Darwin:
+    # > ./xml.h:103:82: error: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wreserved-user-defined-literal]
+    # >     void xmlout(const std::string &tag,const int64_t value){ xmlprintf(tag,"","%"PRId64,value); }
     platforms = with platforms; linux ++ freebsd ++ openbsd;
     maintainers = [ maintainers.karantan ];
   };