Merge pull request #67262 from dasJ/unbreak-evdi

evdi: Unbreak on Linux 5.2 and lower
This commit is contained in:
Marek Mahut 2019-08-22 21:14:50 +02:00 committed by GitHub
commit 416e46c5ee
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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;
};
}