kmsvnc: init at 0.0.5

This commit is contained in:
Nick Cao 2023-10-19 10:00:16 -04:00
parent 7c9cc5a6e5
commit 5c3f80c6ef
No known key found for this signature in database

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;
};
}