about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/eglexternalplatform/default.nix
blob: 2845faa9d08845708252439d7acc93ad497ed087 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{ stdenvNoCC
, lib
, fetchFromGitHub
}:

stdenvNoCC.mkDerivation rec {
  pname = "eglexternalplatform";
  version = "1.1";

  src = fetchFromGitHub {
    owner = "Nvidia";
    repo = "eglexternalplatform";
    rev = "7c8f8e2218e46b1a4aa9538520919747f1184d86";
    sha256 = "0lr5s2xa1zn220ghmbsiwgmx77l156wk54c7hybia0xpr9yr2nhb";
  };

  dontConfigure = true;
  dontBuild = true;

  installPhase = ''
    runHook preInstall

    mkdir -p $out/include/
    cp interface/* $out/include/

    substituteInPlace eglexternalplatform.pc \
      --replace "/usr/include/EGL" "$out/include"
    install -Dm644 {.,$out/share/pkgconfig}/eglexternalplatform.pc

    runHook postInstall
  '';

  meta = with lib; {
    description = "The EGL External Platform interface";
    homepage = "https://github.com/NVIDIA/eglexternalplatform";
    license = licenses.mit;
    platforms = platforms.linux;
    maintainers = with maintainers; [ hedning ];
  };
}