mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2025-01-08 22:57:42 +03:00
kmsvnc: init at 0.0.5
This commit is contained in:
parent
7c9cc5a6e5
commit
5c3f80c6ef
43
pkgs/by-name/km/kmsvnc/package.nix
Normal file
43
pkgs/by-name/km/kmsvnc/package.nix
Normal 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;
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user