linuxPackages.isgx: limit to x86_64

This commit is contained in:
Jörg Thalheim 2021-04-21 23:39:53 +02:00
parent 7745b7a9d1
commit d0a90eb51a
No known key found for this signature in database
GPG key ID: B3F5D81B0C6967C4

View file

@ -51,6 +51,6 @@ stdenv.mkDerivation rec {
homepage = "https://github.com/intel/linux-sgx-driver";
license = with licenses; [ bsd3 /* OR */ gpl2Only ];
maintainers = with maintainers; [ oxalica ];
platforms = platforms.linux;
platforms = [ "x86_64-linux" ];
};
}