lol

hashdeep: simplify platforms

+3 -2
+3 -2
pkgs/tools/security/hashdeep/default.nix
··· 17 17 description = "A set of cross-platform tools to compute hashes"; 18 18 homepage = "https://github.com/jessek/hashdeep"; 19 19 license = licenses.gpl2; 20 + maintainers = [ maintainers.karantan ]; 21 + platforms = platforms.all; 20 22 # Build fails on Darwin: 21 23 # > ./xml.h:103:82: error: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wreserved-user-defined-literal] 22 24 # > void xmlout(const std::string &tag,const int64_t value){ xmlprintf(tag,"","%"PRId64,value); } 23 - platforms = with platforms; linux ++ freebsd ++ openbsd; 24 - maintainers = [ maintainers.karantan ]; 25 + broken = stdenv.isDarwin; 25 26 }; 26 27 }