displaylink: 5.7.0-61.129 -> 5.8.0-63.33

https://www.synaptics.com/products/displaylink-graphics/downloads/ubuntu-5.8
This commit is contained in:
Anthony Roussel 2023-08-27 19:39:52 +02:00
parent 812b1f2955
commit 89052d98aa
No known key found for this signature in database
GPG key ID: 9DC4987B1A55E75E

View file

@ -9,6 +9,7 @@
, requireFile
, substituteAll
}:
let
arch =
if stdenv.hostPlatform.system == "x86_64-linux" then "x64"
@ -20,22 +21,22 @@ let
in
stdenv.mkDerivation rec {
pname = "displaylink";
version = "5.7.0-61.129";
version = "5.8.0-63.33";
src = requireFile rec {
name = "displaylink-570.zip";
sha256 = "807f1c203ac1e71c6f1f826493b9bb32e277f07cb2cf48537bf8cfdc68dd1515";
name = "displaylink-580.zip";
sha256 = "05m8vm6i9pc9pmvar021lw3ls60inlmq92nling0vj28skm55i92";
message = ''
In order to install the DisplayLink drivers, you must first
comply with DisplayLink's EULA and download the binaries and
sources from here:
https://www.synaptics.com/products/displaylink-graphics/downloads/ubuntu-5.7
https://www.synaptics.com/products/displaylink-graphics/downloads/ubuntu-5.8
Once you have downloaded the file, please use the following
commands and re-run the installation:
mv \$PWD/"DisplayLink USB Graphics Software for Ubuntu5.7-EXE.zip" \$PWD/${name}
mv \$PWD/"DisplayLink USB Graphics Software for Ubuntu5.8-EXE.zip" \$PWD/${name}
nix-prefetch-url file://\$PWD/${name}
'';
};
@ -74,5 +75,6 @@ stdenv.mkDerivation rec {
maintainers = with maintainers; [ abbradar ];
platforms = [ "x86_64-linux" "i686-linux" ];
hydraPlatforms = [];
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
};
}