_1fps: init at 0.1.10

This commit is contained in:
renesat 2024-08-08 21:23:17 +02:00
parent 68457546c3
commit cce070e794
No known key found for this signature in database

View File

@ -0,0 +1,35 @@
{
lib,
fetchFromGitHub,
buildGoModule,
xorg,
}:
buildGoModule rec {
pname = "1fps";
version = "0.1.10";
src = fetchFromGitHub {
owner = "1fpsvideo";
repo = "1fps";
rev = "v${version}";
hash = "sha256-3uPGFxEWmKQxQWPmotZI29GykUGQDjtDjFPps4QMs0M=";
};
proxyVendor = true;
vendorHash = "sha256-J3RGQhjpGURmXOwq19BbbNg5ERrUXHnSG5Id6gX7Nug=";
buildInputs = [
xorg.libX11
xorg.libXtst
xorg.libXi
];
meta = {
description = "Encrypted Screen Sharing";
homepage = "https://1fps.video";
license = lib.licenses.fsl11Asl20;
maintainers = with lib.maintainers; [ renesat ];
mainProgram = "1fps";
};
}