folly: disable on 32bit (unsupported)

This commit is contained in:
Domen Kožar 2014-12-11 09:49:52 +01:00
parent 3c9828fd77
commit 776d796221

View File

@ -29,7 +29,8 @@ stdenv.mkDerivation rec {
description = "A YAML parser and emitter for C++";
homepage = https://code.google.com/p/yaml-cpp/;
license = licenses.mit;
platforms = platforms.unix;
# 32bit is not supported: https://github.com/facebook/folly/issues/103
platforms = [ "x86_64-linux" ];
maintainers = maintainers.abbradar;
};
}