parent
7b65696436
commit
f696f043a4
5 changed files with 89 additions and 14 deletions
packages/gpu-screen-recorder
|
@ -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;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -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.
|
||||
'';
|
||||
}
|
||||
|
|
|
@ -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.
|
||||
'';
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue