summary refs log tree commit diff
path: root/pkgs/os-specific/linux/evdi
diff options
context:
space:
mode:
authorJoachim Fasting <joachifm@fastmail.fm>2017-06-09 12:14:54 +0200
committerJoachim Fasting <joachifm@fastmail.fm>2017-06-09 12:54:57 +0200
commitb1f0af7ef67260724c914a823e87ea2b4516b7e9 (patch)
tree7c4848cb0ac2367aaafd12d1892129dfc11370fe /pkgs/os-specific/linux/evdi
parent184ab11fc9312eb03eb88b4881974e6ebe7c44df (diff)
downloadnixpkgs-b1f0af7ef67260724c914a823e87ea2b4516b7e9.tar
nixpkgs-b1f0af7ef67260724c914a823e87ea2b4516b7e9.tar.gz
nixpkgs-b1f0af7ef67260724c914a823e87ea2b4516b7e9.tar.bz2
nixpkgs-b1f0af7ef67260724c914a823e87ea2b4516b7e9.tar.lz
nixpkgs-b1f0af7ef67260724c914a823e87ea2b4516b7e9.tar.xz
nixpkgs-b1f0af7ef67260724c914a823e87ea2b4516b7e9.tar.zst
nixpkgs-b1f0af7ef67260724c914a823e87ea2b4516b7e9.zip
linuxPackages.evdi: specify minimum kernel version, per upstream
Upstream says 3.16 is the oldest supported kernel.  No versions prior to
3.18 build on Hydra. See e.g., https://hydra.nixos.org/build/53599831.
Diffstat (limited to 'pkgs/os-specific/linux/evdi')
-rw-r--r--pkgs/os-specific/linux/evdi/default.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/pkgs/os-specific/linux/evdi/default.nix b/pkgs/os-specific/linux/evdi/default.nix
index d1e8a466953..150534c9b95 100644
--- a/pkgs/os-specific/linux/evdi/default.nix
+++ b/pkgs/os-specific/linux/evdi/default.nix
@@ -27,5 +27,6 @@ stdenv.mkDerivation rec {
     platforms = platforms.linux;
     license = licenses.gpl2;
     homepage = "http://www.displaylink.com/";
+    broken = !versionAtLeast kernel.version "3.16";
   };
 }