Merge pull request #262071 from NickCao/kmsvnc

kmsvnc: init at 0.0.5
This commit is contained in:
Nick Cao 2023-10-20 10:11:15 -04:00 committed by GitHub
commit dfd918ab92
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,43 @@
{ lib
, stdenv
, fetchFromGitHub
, cmake
, pkg-config
, libdrm
, libvncserver
, libxkbcommon
, libva
}:
stdenv.mkDerivation rec {
pname = "kmsvnc";
version = "0.0.5";
src = fetchFromGitHub {
owner = "isjerryxiao";
repo = "kmsvnc";
rev = "v${version}";
hash = "sha256-Dz1y4t8u9/rnmOiYMWMq6aEq3kV47uiIK7K4DSvjZNc=";
};
nativeBuildInputs = [
cmake
pkg-config
];
buildInputs = [
libdrm
libvncserver
libxkbcommon
libva
];
meta = with lib; {
description = "A VNC server for DRM/KMS capable GNU/Linux devices";
homepage = "https://github.com/isjerryxiao/kmsvnc";
license = licenses.gpl3Only;
maintainers = with maintainers; [ nickcao ];
mainProgram = "kmsvnc";
platforms = platforms.linux;
};
}