about summary refs log tree commit diff
path: root/pkgs/tools/security/hashdeep
diff options
context:
space:
mode:
authorSandro Jäckel <sandro.jaeckel@gmail.com>2021-03-06 20:10:17 +0100
committerSandro Jäckel <sandro.jaeckel@gmail.com>2021-03-07 04:08:40 +0100
commit473906dc8b895ef6576b054971bf78b923ff2009 (patch)
tree6e8621ee0ea62a8da64c3f6755120d53c6aaca17 /pkgs/tools/security/hashdeep
parent451ffcb2ac97c3d110cc88f0a301f4ba0d5b4b1a (diff)
hashdeep: simplify platforms
Diffstat (limited to 'pkgs/tools/security/hashdeep')
-rw-r--r--pkgs/tools/security/hashdeep/default.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/tools/security/hashdeep/default.nix b/pkgs/tools/security/hashdeep/default.nix
index 702a40ab8b8dc..0e24e0ec3a397 100644
--- a/pkgs/tools/security/hashdeep/default.nix
+++ b/pkgs/tools/security/hashdeep/default.nix
@@ -17,10 +17,11 @@ stdenv.mkDerivation rec {
     description = "A set of cross-platform tools to compute hashes";
     homepage = "https://github.com/jessek/hashdeep";
     license = licenses.gpl2;
+    maintainers = [ maintainers.karantan ];
+    platforms = platforms.all;
     # 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 ];
+    broken = stdenv.isDarwin;
   };
 }