graphene-hardened-malloc: constrain platforms to x64 linux

Build error on i686:

> util.h:39:18: error: '__int128' is not supported on this target
  typedef unsigned __int128 u128;
This commit is contained in:
Joachim Fasting 2019-10-05 12:41:40 +02:00
parent 2436c27541
commit a08851c925
No known key found for this signature in database
GPG Key ID: 5C204DF675C90294

View File

@ -52,6 +52,6 @@ stdenv.mkDerivation rec {
'';
license = licenses.mit;
maintainers = with maintainers; [ ris ];
platforms = platforms.linux;
platforms = [ "x86_64-linux" ];
};
}