wlvncc: init at unstable-2023-01-05

This commit is contained in:
teutat3s 2024-01-07 21:46:43 +01:00
parent bd645e8668
commit 51847f6b49
No known key found for this signature in database
GPG Key ID: 18DAE600A6BBE705

@ -0,0 +1,68 @@
{ lib
, stdenv
, fetchFromGitHub
, aml
, cyrus_sasl
, ffmpeg
, gnutls
, libGL
, libdrm
, libgcrypt
, libjpeg
, libpng
, libxkbcommon
, lzo
, mesa
, meson
, ninja
, openssl
, pkg-config
, pixman
, wayland
, zlib
}:
stdenv.mkDerivation {
pname = "wlvncc";
version = "unstable-2023-01-05";
src = fetchFromGitHub {
owner = "any1";
repo = "wlvncc";
rev = "2b9a886edd38204ef36e9f9f65dd32aaa3784530";
hash = "sha256-0HbZEtDaLjr966RS+2GHc7N4nsivPIv57T/+AJliwUI=";
};
nativeBuildInputs = [
meson
ninja
pkg-config
];
buildInputs = [
aml
cyrus_sasl
ffmpeg
gnutls
libGL
libdrm
libgcrypt
libjpeg
libpng
libxkbcommon
lzo
mesa
openssl
pixman
wayland
zlib
];
meta = with lib; {
description = "A Wayland Native VNC Client";
homepage = "https://github.com/any1/wlvncc";
license = licenses.gpl2Only;
maintainers = with maintainers; [ teutat3s ];
platforms = platforms.linux;
mainProgram = "wlvncc";
};
}