2020-03-01 18:24:57 +01:00
|
|
|
{ stdenv, fetchFromGitHub, meson, ninja, pkg-config, wayland, scdoc
|
|
|
|
, wayland-protocols, ffmpeg_4, x264, libpulseaudio, ocl-icd, opencl-headers
|
2019-05-13 18:02:41 +02:00
|
|
|
}:
|
2019-03-14 21:14:07 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "wf-recorder";
|
2020-04-14 21:04:17 +02:00
|
|
|
version = "0.2.1";
|
2019-03-14 21:14:07 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "ammen99";
|
|
|
|
repo = pname;
|
2019-05-13 18:02:41 +02:00
|
|
|
rev = "v${version}";
|
2020-04-14 21:04:17 +02:00
|
|
|
sha256 = "1cw6kpcbl33wh95pvy32xrsrm6kkk1awccr3phyh885xjs3b3iim";
|
2019-03-14 21:14:07 +01:00
|
|
|
};
|
|
|
|
|
2020-03-01 18:24:57 +01:00
|
|
|
nativeBuildInputs = [ meson ninja pkg-config wayland scdoc ];
|
|
|
|
buildInputs = [
|
|
|
|
wayland-protocols ffmpeg_4 x264 libpulseaudio ocl-icd opencl-headers
|
|
|
|
];
|
2019-03-14 21:14:07 +01:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Utility program for screen recording of wlroots-based compositors";
|
2020-03-01 18:24:57 +01:00
|
|
|
inherit (src.meta) homepage;
|
|
|
|
changelog = "https://github.com/ammen99/wf-recorder/releases/tag/v${version}";
|
2019-03-14 21:14:07 +01:00
|
|
|
license = licenses.mit;
|
2020-03-01 18:24:57 +01:00
|
|
|
maintainers = with maintainers; [ primeos CrazedProgrammer ];
|
2019-03-14 21:14:07 +01:00
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|