hashdeep: simplify platforms

This commit is contained in:
Sandro Jäckel 2021-03-06 20:10:17 +01:00
parent 451ffcb2ac
commit 473906dc8b
No known key found for this signature in database
GPG key ID: 3AF5A43A3EECC2E5

View file

@ -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;
};
}