Merge pull request #115306 from SuperSandro2000/fix-collection22

This commit is contained in:
Sandro
2021-03-07 15:58:56 +01:00
committed by GitHub
11 changed files with 88 additions and 110 deletions

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