summary refs log tree commit diff
path: root/pkgs/os-specific/linux/evdi
diff options
context:
space:
mode:
authorArtturin <Artturin@artturin.com>2021-08-04 00:39:37 +0300
committerArtturin <Artturin@artturin.com>2021-08-04 16:29:16 +0300
commit335632575cef3182d8beee6d96bf76d4cd059898 (patch)
treeb8019168752820b4eedb7645dfdab9b757bf786f /pkgs/os-specific/linux/evdi
parent61dd23eeaf998ff94a25150bc51099835842f145 (diff)
downloadnixpkgs-335632575cef3182d8beee6d96bf76d4cd059898.tar
nixpkgs-335632575cef3182d8beee6d96bf76d4cd059898.tar.gz
nixpkgs-335632575cef3182d8beee6d96bf76d4cd059898.tar.bz2
nixpkgs-335632575cef3182d8beee6d96bf76d4cd059898.tar.lz
nixpkgs-335632575cef3182d8beee6d96bf76d4cd059898.tar.xz
nixpkgs-335632575cef3182d8beee6d96bf76d4cd059898.tar.zst
nixpkgs-335632575cef3182d8beee6d96bf76d4cd059898.zip
linuxPackages.evdi: unstable-2021-06-11 -> unstable-2021-07-7
Diffstat (limited to 'pkgs/os-specific/linux/evdi')
-rw-r--r--pkgs/os-specific/linux/evdi/default.nix21
1 files changed, 4 insertions, 17 deletions
diff --git a/pkgs/os-specific/linux/evdi/default.nix b/pkgs/os-specific/linux/evdi/default.nix
index 5eb31e9422d..c1b624386c3 100644
--- a/pkgs/os-specific/linux/evdi/default.nix
+++ b/pkgs/os-specific/linux/evdi/default.nix
@@ -1,29 +1,16 @@
-{ lib, stdenv, fetchFromGitHub, fetchpatch, kernel, libdrm }:
+{ lib, stdenv, fetchFromGitHub, kernel, libdrm }:
 
 stdenv.mkDerivation rec {
   pname = "evdi";
-  version = "unstable-2021-06-11";
+  version = "unstable-2021-07-07";
 
   src = fetchFromGitHub {
     owner = "DisplayLink";
     repo = pname;
-    rev = "65e12fca334f2f42396f4e8d16592d53cab34dd6";
-    sha256 = "sha256-81IfdYKadKT7vRdkmxzfGo4KHa4UJ8uJ0K6djQCr22U=";
+    rev = "b0b2c80eb63f9b858b71afa772135f434aea192a";
+    sha256 = "sha256-io+CbZovGjEJjwtmARFH23Djt933ONoHMDoea+i6xFo=";
   };
 
-  # Linux 5.13 support
-  # The patches break compilation for older kernels
-  patches = lib.optional (kernel.kernelAtLeast "5.13") [
-    (fetchpatch {
-      url = "https://github.com/DisplayLink/evdi/commit/c5f5441d0a115d2cfc8125b8bafaa05b2edc7938.patch";
-      sha256 = "sha256-tWYgBrRh3mXPebhUygOvJ07V87g9JU66hREriACfEVI=";
-    })
-    (fetchpatch {
-      url = "https://github.com/DisplayLink/evdi/commit/5f04d2e2df4cfd21dc15d31f1152c6a66fa48a78.patch";
-      sha256 = "sha256-690/eUiEVWvnT/YAVgKcLo86dgolF9giWRuPxXpL+eQ=";
-    })
-  ];
-
   nativeBuildInputs = kernel.moduleBuildDependencies;
 
   buildInputs = [ kernel libdrm ];