summary refs log tree commit diff
path: root/pkgs/os-specific/linux/evdi
diff options
context:
space:
mode:
authorR. RyanTM <ryantm-bot@ryantm.com>2018-11-21 11:23:41 -0800
committerRenaud <c0bw3b@users.noreply.github.com>2018-11-21 20:23:41 +0100
commitc7c021757bc5694bc0ab5ce2b470a8da46a86659 (patch)
tree09ed415fa31ced31ffb62eb22f83951d096460a2 /pkgs/os-specific/linux/evdi
parent44f8603993536aad52f456ba46e98f3976efcb76 (diff)
downloadnixpkgs-c7c021757bc5694bc0ab5ce2b470a8da46a86659.tar
nixpkgs-c7c021757bc5694bc0ab5ce2b470a8da46a86659.tar.gz
nixpkgs-c7c021757bc5694bc0ab5ce2b470a8da46a86659.tar.bz2
nixpkgs-c7c021757bc5694bc0ab5ce2b470a8da46a86659.tar.lz
nixpkgs-c7c021757bc5694bc0ab5ce2b470a8da46a86659.tar.xz
nixpkgs-c7c021757bc5694bc0ab5ce2b470a8da46a86659.tar.zst
nixpkgs-c7c021757bc5694bc0ab5ce2b470a8da46a86659.zip
linuxPackages.evdi: 1.5.0.2 -> 1.5.1
* linuxPackages.evdi: 1.5.0.2 -> 1.5.1 (#50754)

Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/evdi/versions

* evdi: refresh meta

Licenses : lib is LGPL-2.1-only while module is GPL-2.0-only

Supported kernel versions: builds with 4.15 / 4.16 / 4.17 since commit 90c26648acbe9a2f7ce4e0331e39045819323bf2
Diffstat (limited to 'pkgs/os-specific/linux/evdi')
-rw-r--r--pkgs/os-specific/linux/evdi/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/os-specific/linux/evdi/default.nix b/pkgs/os-specific/linux/evdi/default.nix
index 3c7e2f98b89..999b1a12bbc 100644
--- a/pkgs/os-specific/linux/evdi/default.nix
+++ b/pkgs/os-specific/linux/evdi/default.nix
@@ -2,13 +2,13 @@
 
 stdenv.mkDerivation rec {
   name = "evdi-${version}";
-  version = "1.5.0.2";
+  version = "1.5.1";
 
   src = fetchFromGitHub {
     owner = "DisplayLink";
     repo = "evdi";
     rev = "v${version}";
-    sha256 = "1wjk023lpjxnspfl34c6rzkrixahfdzdkmc3hnmrdw12s3i6ca5x";
+    sha256 = "0jy0ia5fsx54d2wv4d2jqnc8rc5x16781a3bcb857apc47zr387h";
   };
 
   nativeBuildInputs = kernel.moduleBuildDependencies;
@@ -27,8 +27,8 @@ stdenv.mkDerivation rec {
   meta = with stdenv.lib; {
     description = "Extensible Virtual Display Interface";
     platforms = platforms.linux;
-    license = licenses.gpl2;
-    homepage = http://www.displaylink.com/;
-    broken = versionOlder kernel.version "4.9" || versionAtLeast kernel.version "4.15" || stdenv.isAarch64;
+    license = with licenses; [ lgpl21 gpl2 ];
+    homepage = https://www.displaylink.com/;
+    broken = versionOlder kernel.version "4.9" || versionAtLeast kernel.version "4.18" || stdenv.isAarch64;
   };
 }