65 lines
1.7 KiB
Nix
65 lines
1.7 KiB
Nix
|
{ pkgs, lib, ... }: let
|
||
|
gsr = (pkgs.gpu-screen-recorder.overrideAttrs (o: {
|
||
|
src = pkgs.fetchgit {
|
||
|
url = "https://repo.dec05eba.com/gpu-screen-recorder";
|
||
|
rev = "1ac862d155e10f050e6f6cca5381f9f5a3528d98";
|
||
|
hash = "sha256-wLiBn4VIi+IWY4qVkdFzkHhECTFH97snogVTEwM5yx8=";
|
||
|
};
|
||
|
|
||
|
buildInputs = (o.buildInputs or [ ]) ++ (with pkgs; [
|
||
|
wayland
|
||
|
wayland-protocols
|
||
|
libdrm
|
||
|
libva
|
||
|
xorg.libXrandr
|
||
|
libglvnd
|
||
|
]);
|
||
|
|
||
|
postPatch = "";
|
||
|
|
||
|
installPhase = ''
|
||
|
strip gsr-kms-server
|
||
|
strip gpu-screen-recorder
|
||
|
|
||
|
install -Dm755 "gsr-kms-server" "$out/bin/gsr-kms-server"
|
||
|
install -Dm755 "gpu-screen-recorder" "$out/bin/gpu-screen-recorder"
|
||
|
install -Dm644 "extra/gpu-screen-recorder.service" "$out/lib/systemd/user/gpu-screen-recorder.service"
|
||
|
|
||
|
wrapProgram $out/bin/gpu-screen-recorder --prefix LD_LIBRARY_PATH : "${lib.makeLibraryPath [
|
||
|
pkgs.addOpenGLRunpath.driverLink
|
||
|
pkgs.libglvnd
|
||
|
]}"
|
||
|
'';
|
||
|
}));
|
||
|
in {
|
||
|
environment.systemPackages = with pkgs; [
|
||
|
pulseaudio # for getting audio sink
|
||
|
gsr
|
||
|
|
||
|
(writeShellScriptBin "gpu-save-replay" ''
|
||
|
exec ${pkgs.procps}/bin/pkill --signal SIGUSR1 -f gpu-screen-recorder
|
||
|
'')
|
||
|
|
||
|
# Run this after login to make sure it works
|
||
|
(writeShellScriptBin "gpu-restart-replay" ''
|
||
|
exec systemctl --user restart gpu-screen-recorder.service
|
||
|
'')
|
||
|
];
|
||
|
|
||
|
security.wrappers = {
|
||
|
gpu-screen-recorder = {
|
||
|
owner = "root";
|
||
|
group = "video";
|
||
|
capabilities = "cap_sys_nice+ep";
|
||
|
source = "${gsr}/bin/gpu-screen-recorder";
|
||
|
};
|
||
|
|
||
|
gsr-kms-server = {
|
||
|
owner = "root";
|
||
|
group = "video";
|
||
|
capabilities = "cap_sys_admin+ep";
|
||
|
source = "${gsr}/bin/gsr-kms-server";
|
||
|
};
|
||
|
};
|
||
|
}
|