nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 stdenv,
3 lib,
4 fetchFromGitHub,
5 meson,
6 ninja,
7}:
8
9stdenv.mkDerivation rec {
10 pname = "eglexternalplatform";
11 version = "1.2.1";
12
13 src = fetchFromGitHub {
14 owner = "Nvidia";
15 repo = "eglexternalplatform";
16 rev = version;
17 hash = "sha256-tDKh1oSnOSG/XztHHYCwg1tDB7M6olOtJ8te+uan9ko=";
18 };
19
20 nativeBuildInputs = [
21 meson
22 ninja
23 ];
24
25 meta = with lib; {
26 description = "EGL External Platform interface";
27 homepage = "https://github.com/NVIDIA/eglexternalplatform";
28 license = licenses.mit;
29 platforms = platforms.linux;
30 maintainers = with maintainers; [ hedning ];
31 };
32}