Merge pull request #119664 from eyJhb/displaylink-5.4

displaylink: 5.3.1 -> 5.4.0 (+evdi)
This commit is contained in:
Graham Christensen
2021-04-22 13:36:31 +00:00
committed by GitHub
2 changed files with 7 additions and 7 deletions
@@ -20,17 +20,17 @@ let
in in
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "displaylink"; pname = "displaylink";
version = "5.3.1.34"; version = "5.4.0-55.153";
src = requireFile rec { src = requireFile rec {
name = "displaylink.zip"; name = "displaylink.zip";
sha256 = "1c1kbjgpb71f73qnyl44rvwi6l4ivddq789rwvvh0ahw2jm324hy"; sha256 = "1m2l3bnlfwfp94w7khr05npsbysg9mcyi7hi85n78xkd0xdcxml8";
message = '' message = ''
In order to install the DisplayLink drivers, you must first In order to install the DisplayLink drivers, you must first
comply with DisplayLink's EULA and download the binaries and comply with DisplayLink's EULA and download the binaries and
sources from here: sources from here:
https://www.displaylink.com/downloads/file?id=1576 https://www.synaptics.com/node/3751
Once you have downloaded the file, please use the following Once you have downloaded the file, please use the following
commands and re-run the installation: commands and re-run the installation:
+4 -4
View File
@@ -2,13 +2,13 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "evdi"; pname = "evdi";
version = "v1.7.2"; version = "unstable-20210401";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "DisplayLink"; owner = "DisplayLink";
repo = pname; repo = pname;
rev = version; rev = "b0b3d131b26df62664ca33775679eea7b70c47b1";
sha256 = "074j0xh037n8mc4isihfz9lap57wvxaxib32pvy6jhjl3wyik632"; sha256 = "09apbvdc78bbqzja9z3b1wrwmqkv3k7cn3lll5gsskxjnqbhxk9y";
}; };
nativeBuildInputs = kernel.moduleBuildDependencies; nativeBuildInputs = kernel.moduleBuildDependencies;
@@ -33,6 +33,6 @@ stdenv.mkDerivation rec {
platforms = platforms.linux; platforms = platforms.linux;
license = with licenses; [ lgpl21 gpl2 ]; license = with licenses; [ lgpl21 gpl2 ];
homepage = "https://www.displaylink.com/"; homepage = "https://www.displaylink.com/";
broken = versionOlder kernel.version "4.9" || stdenv.isAarch64; broken = versionOlder kernel.version "4.19" || stdenv.isAarch64;
}; };
} }