evdi: Unbreak on Linux 5.2 and lower

The changelog mentions 5.2 support:
https://github.com/DisplayLink/evdi/releases/tag/v1.6.2
This commit is contained in:
Janne Heß 2019-08-22 17:35:34 +02:00
parent b67b08518e
commit cd5376cb4b

View file

@ -29,6 +29,6 @@ stdenv.mkDerivation rec {
platforms = platforms.linux;
license = with licenses; [ lgpl21 gpl2 ];
homepage = https://www.displaylink.com/;
broken = versionOlder kernel.version "4.9" || versionAtLeast kernel.version "4.18" || stdenv.isAarch64;
broken = versionOlder kernel.version "4.9" || versionAtLeast kernel.version "5.3" || stdenv.isAarch64;
};
}