mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 16:33:15 +00:00
94 lines
1.9 KiB
Nix
94 lines
1.9 KiB
Nix
{
|
|
stdenv,
|
|
lib,
|
|
fetchurl,
|
|
makeWrapper,
|
|
meson,
|
|
ninja,
|
|
addDriverRunpath,
|
|
pkg-config,
|
|
libXcomposite,
|
|
libpulseaudio,
|
|
dbus,
|
|
ffmpeg,
|
|
wayland,
|
|
vulkan-headers,
|
|
pipewire,
|
|
libdrm,
|
|
libva,
|
|
libglvnd,
|
|
libXdamage,
|
|
libXi,
|
|
libXrandr,
|
|
libXfixes,
|
|
wrapperDir ? "/run/wrappers/bin",
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "gpu-screen-recorder";
|
|
version = "4.2.3";
|
|
|
|
src = fetchurl {
|
|
url = "https://dec05eba.com/snapshot/gpu-screen-recorder.git.${finalAttrs.version}.tar.gz";
|
|
hash = "sha256-M2bk1WwLlbwspEoPIRMix17ihi72UuRWwiKBdPfim2M=";
|
|
};
|
|
|
|
sourceRoot = ".";
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
makeWrapper
|
|
meson
|
|
ninja
|
|
];
|
|
|
|
buildInputs = [
|
|
libXcomposite
|
|
libpulseaudio
|
|
dbus
|
|
ffmpeg
|
|
pipewire
|
|
wayland
|
|
vulkan-headers
|
|
libdrm
|
|
libva
|
|
libXdamage
|
|
libXi
|
|
libXrandr
|
|
libXfixes
|
|
];
|
|
|
|
mesonFlags = [
|
|
# Install the upstream systemd unit
|
|
(lib.mesonBool "systemd" true)
|
|
# Enable Wayland support
|
|
(lib.mesonBool "portal" true)
|
|
# Handle by the module
|
|
(lib.mesonBool "capabilities" false)
|
|
(lib.mesonBool "nvidia_suspend_fix" false)
|
|
];
|
|
|
|
postInstall = ''
|
|
mkdir $out/bin/.wrapped
|
|
mv $out/bin/gpu-screen-recorder $out/bin/.wrapped/
|
|
makeWrapper "$out/bin/.wrapped/gpu-screen-recorder" "$out/bin/gpu-screen-recorder" \
|
|
--prefix LD_LIBRARY_PATH : "${
|
|
lib.makeLibraryPath [
|
|
libglvnd
|
|
addDriverRunpath.driverLink
|
|
]
|
|
}" \
|
|
--prefix PATH : "${wrapperDir}" \
|
|
--suffix PATH : "$out/bin"
|
|
'';
|
|
|
|
meta = {
|
|
description = "Screen recorder that has minimal impact on system performance by recording a window using the GPU only";
|
|
homepage = "https://git.dec05eba.com/gpu-screen-recorder/about/";
|
|
license = lib.licenses.gpl3Only;
|
|
mainProgram = "gpu-screen-recorder";
|
|
maintainers = [ lib.maintainers.babbaj ];
|
|
platforms = [ "x86_64-linux" ];
|
|
};
|
|
})
|