summary refs log tree commit diff
path: root/pkgs/os-specific/linux/evdi
diff options
context:
space:
mode:
authorWill Dietz <w@wdtz.org>2019-07-08 16:56:15 -0500
committerWill Dietz <w@wdtz.org>2019-07-09 06:05:40 -0500
commit7e5f0cd4e956688578521f0a2f75f10b711eb038 (patch)
treee14c37b5af71860500940653fdd977eff7887a9a /pkgs/os-specific/linux/evdi
parente449caf6063124c8b5791acda96ac082ae42ecd9 (diff)
downloadnixpkgs-7e5f0cd4e956688578521f0a2f75f10b711eb038.tar
nixpkgs-7e5f0cd4e956688578521f0a2f75f10b711eb038.tar.gz
nixpkgs-7e5f0cd4e956688578521f0a2f75f10b711eb038.tar.bz2
nixpkgs-7e5f0cd4e956688578521f0a2f75f10b711eb038.tar.lz
nixpkgs-7e5f0cd4e956688578521f0a2f75f10b711eb038.tar.xz
nixpkgs-7e5f0cd4e956688578521f0a2f75f10b711eb038.tar.zst
nixpkgs-7e5f0cd4e956688578521f0a2f75f10b711eb038.zip
evdi: 1.6.1 -> 1.6.2
https://github.com/DisplayLink/evdi/releases/tag/v1.6.2

Since it's short:

    support for 5.2 kernel
    Intel-IOMMU workaround
    workaround for problem with FourCC when switching Xorg <-> Wayland
    fix issues found with Coverity
Diffstat (limited to 'pkgs/os-specific/linux/evdi')
-rw-r--r--pkgs/os-specific/linux/evdi/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/os-specific/linux/evdi/default.nix b/pkgs/os-specific/linux/evdi/default.nix
index b8fec2f416a..d4a23f3ed07 100644
--- a/pkgs/os-specific/linux/evdi/default.nix
+++ b/pkgs/os-specific/linux/evdi/default.nix
@@ -1,14 +1,14 @@
 { stdenv, fetchFromGitHub, kernel, libdrm }:
 
 stdenv.mkDerivation rec {
-  name = "evdi-${version}";
-  version = "1.6.1";
+  pname = "evdi";
+  version = "1.6.2";
 
   src = fetchFromGitHub {
     owner = "DisplayLink";
-    repo = "evdi";
+    repo = pname;
     rev = "v${version}";
-    sha256 = "1h98w1yfqsrjfhpnyfnggpkxs9yayw441nmfkllmzhzfnsd31fp7";
+    sha256 = "0ajjsh1fw7w0k28r6qq7kh3qcr87gzzjp8s890algbglynlafzfw";
   };
 
   nativeBuildInputs = kernel.moduleBuildDependencies;