hashdeep: simplify platforms
This commit is contained in:
parent
451ffcb2ac
commit
473906dc8b
|
@ -17,10 +17,11 @@ stdenv.mkDerivation rec {
|
||||||
description = "A set of cross-platform tools to compute hashes";
|
description = "A set of cross-platform tools to compute hashes";
|
||||||
homepage = "https://github.com/jessek/hashdeep";
|
homepage = "https://github.com/jessek/hashdeep";
|
||||||
license = licenses.gpl2;
|
license = licenses.gpl2;
|
||||||
|
maintainers = [ maintainers.karantan ];
|
||||||
|
platforms = platforms.all;
|
||||||
# Build fails on Darwin:
|
# 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]
|
# > ./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); }
|
# > void xmlout(const std::string &tag,const int64_t value){ xmlprintf(tag,"","%"PRId64,value); }
|
||||||
platforms = with platforms; linux ++ freebsd ++ openbsd;
|
broken = stdenv.isDarwin;
|
||||||
maintainers = [ maintainers.karantan ];
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue