Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: b47ec9a6b3e6
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: c3c9f32869d7
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Jan 24, 2020

  1. evdi: 1.6.4 -> git-2020-01-16

    sjau committed Jan 24, 2020

    Verified

    This commit was signed with the committer’s verified signature.
    janb87 Jan Bevers
    Copy the full SHA
    edd636f View commit details

Commits on Jan 28, 2020

  1. Merge pull request #77836 from sjau/evdi-2020-01-16

    evdi: 1.6.4 -> git-2020-01-16
    peterhoeg authored Jan 28, 2020

    Verified

    This commit was signed with the committer’s verified signature.
    janb87 Jan Bevers
    Copy the full SHA
    c3c9f32 View commit details
Showing with 15 additions and 8 deletions.
  1. +15 −8 pkgs/os-specific/linux/evdi/default.nix
23 changes: 15 additions & 8 deletions pkgs/os-specific/linux/evdi/default.nix
Original file line number Diff line number Diff line change
@@ -1,37 +1,44 @@
{ stdenv, fetchFromGitHub, kernel, libdrm }:
{ stdenv, fetchFromGitHub, fetchpatch, kernel, libdrm }:

stdenv.mkDerivation rec {
pname = "evdi";
version = "1.6.4";
version = "-unstable-20190116";

src = fetchFromGitHub {
owner = "DisplayLink";
repo = pname;
rev = "v${version}";
sha256 = "1yrjm8lvvz3v4h5af6m9qzq6z4lbgd7qbvq5rz7sjhdsh7g6qibd";
rev = "391f1f71e4c86fc18de27947c78e02b5e3e9f128";
sha256 = "147cwmk57ldchvzr06lila6av7jvcdggs9jgifqscklp9x6dc4ny";
};

nativeBuildInputs = kernel.moduleBuildDependencies;

buildInputs = [ kernel libdrm ];

patches = [
(fetchpatch {
url = "https://crazy.dev.frugalware.org/evdi-all-in-one-fixes.patch";
sha256 = "03hs68v8c2akf8a4rc02m15fzyp14ay70rcx8kwg2y98qkqh7w30";
})
];

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

hardeningDisable = [ "format" "pic" "fortify" ];

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
install -Dm755 library/libevdi.so.1.6.4 $out/lib/libevdi.so
'';

meta = with stdenv.lib; {
description = "Extensible Virtual Display Interface";
homepage = "https://www.displaylink.com/";
license = with licenses; [ lgpl21 gpl2 ];
platforms = platforms.linux;
license = with licenses; [ lgpl21 gpl2 ];
homepage = "https://www.displaylink.com/";
broken = versionOlder kernel.version "4.9" || stdenv.isAarch64;
};
}