docs: update package READMEs

This commit is contained in:
matt1432 2025-02-18 16:28:20 -05:00
parent 7b65696436
commit f696f043a4
5 changed files with 89 additions and 14 deletions

View file

@ -1,8 +1,9 @@
{
# params
pname,
gpu-screen-recorder-src,
isKmsServer ? false,
gpu-screen-recorder-src,
description,
# nix build inputs
lib,
stdenv,
@ -106,9 +107,6 @@ in
license = lib.licenses.gpl3Only;
platforms = ["x86_64-linux"];
homepage = "https://git.dec05eba.com/gpu-screen-recorder/about";
description = ''
Screen recorder that has minimal impact on system performance by recording
a window using the GPU only.
'';
inherit description;
};
}

View file

@ -6,4 +6,9 @@
callPackage ./generic.nix {
pname = "gpu-screen-recorder";
inherit gpu-screen-recorder-src;
description = ''
Screen recorder that has minimal impact on system performance by recording
a window using the GPU only.
'';
}

View file

@ -7,4 +7,9 @@ callPackage ./generic.nix {
pname = "gsr-kms-server";
isKmsServer = true;
inherit gpu-screen-recorder-src;
description = ''
Small program giving safe KMS access to gpu-screen-recorder when recording a monitor.
This is the only part of gpu-screen-recorder that could require root permissions.
'';
}