mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 08:53:21 +00:00
57 lines
1.0 KiB
Nix
57 lines
1.0 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
meson,
|
|
ninja,
|
|
pkg-config,
|
|
scdoc,
|
|
wayland-scanner,
|
|
wayland,
|
|
wayland-protocols,
|
|
ffmpeg,
|
|
x264,
|
|
libpulseaudio,
|
|
pipewire,
|
|
mesa, # for libgbm
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "wf-recorder";
|
|
version = "0.5.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ammen99";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
hash = "sha256-7/fQOkfAw5v3irD5blJOdq88j0VBrPVQQufdt9wsACk=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
meson
|
|
ninja
|
|
pkg-config
|
|
wayland-scanner
|
|
scdoc
|
|
];
|
|
buildInputs = [
|
|
wayland
|
|
wayland-protocols
|
|
ffmpeg
|
|
x264
|
|
libpulseaudio
|
|
pipewire
|
|
mesa
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Utility program for screen recording of wlroots-based compositors";
|
|
inherit (src.meta) homepage;
|
|
changelog = "https://github.com/ammen99/wf-recorder/releases/tag/v${version}";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ dywedir ];
|
|
platforms = platforms.linux;
|
|
mainProgram = "wf-recorder";
|
|
};
|
|
}
|