nixos-configs/packages/gpu-screen-recorder/gpu-screen-recorder.nix

15 lines
289 B
Nix
Raw Normal View History

2024-11-21 11:26:08 -05:00
{
callPackage,
gpu-screen-recorder-src,
...
2024-11-26 20:48:07 -05:00
}:
callPackage ./generic.nix {
pname = "gpu-screen-recorder";
inherit gpu-screen-recorder-src;
2025-02-18 16:28:20 -05:00
description = ''
Screen recorder that has minimal impact on system performance by recording
a window using the GPU only.
'';
2024-11-26 20:48:07 -05:00
}