Skip to content

Commit

Permalink
linuxPackages.evdi: init at 1.4.1
Browse files Browse the repository at this point in the history
(cherry picked from commit 030862f)
  • Loading branch information
adrianpk committed May 18, 2017
1 parent e2da5a1 commit 004474c
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 0 deletions.
31 changes: 31 additions & 0 deletions pkgs/os-specific/linux/evdi/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
{ stdenv, fetchFromGitHub, kernel, libdrm }:

stdenv.mkDerivation rec {
name = "evdi-${version}";
version = "1.4.1";

src = fetchFromGitHub {
owner = "DisplayLink";
repo = "evdi";
rev = "v${version}";
sha256 = "176cq83qlmhc4c00dwfnqgd021l7s4gyj8604m5zmxbz0r5mnawv";
};

buildInputs = [ kernel libdrm ];

makeFlags = [ "KVER=${kernel.modDirVersion}" "KDIR=${kernel.dev}/lib/modules/${kernel.modDirVersion}/build" ];

hardeningDisable = [ "pic" "format" ];

installPhase = ''
install -Dm755 module/evdi.ko $out/lib/modules/${kernel.modDirVersion}/kernel/drivers/gpu/drm/evdi/evdi.ko
install -Dm755 library/libevdi.so $out/lib/libevdi.so
'';

meta = with stdenv.lib; {
description = "Extensible Virtual Display Interface";
platforms = platforms.linux;
license = licenses.gpl2;
homepage = "http://www.displaylink.com/";
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -11463,6 +11463,8 @@ with pkgs;

exfat-nofuse = callPackage ../os-specific/linux/exfat { };

evdi = callPackage ../os-specific/linux/evdi { };

pktgen = callPackage ../os-specific/linux/pktgen { };

odp-dpdk = callPackage ../os-specific/linux/odp-dpdk { };
Expand Down

0 comments on commit 004474c

Please sign in to comment.