mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
Merge pull request #81448 from primeos/wf-recorder
wf-recorder: 0.1 -> 0.2
This commit is contained in:
commit
1080a07165
1 changed files with 11 additions and 8 deletions
|
@ -1,26 +1,29 @@
|
||||||
{ stdenv, fetchFromGitHub, meson, ninja, pkgconfig, wayland, wayland-protocols
|
{ stdenv, fetchFromGitHub, meson, ninja, pkg-config, wayland, scdoc
|
||||||
, ffmpeg, x264, libpulseaudio
|
, wayland-protocols, ffmpeg_4, x264, libpulseaudio, ocl-icd, opencl-headers
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "wf-recorder";
|
pname = "wf-recorder";
|
||||||
version = "0.1";
|
version = "0.2";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "ammen99";
|
owner = "ammen99";
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "1rl75r87ijja9mfyrwrsz8r4zvjnhm0103qmgyhq2phlrdpkks5d";
|
sha256 = "1772hrd7j8b32y65x5c392kdijlcn13iqg9hrlagfar92102vsbf";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ meson ninja pkgconfig ];
|
nativeBuildInputs = [ meson ninja pkg-config wayland scdoc ];
|
||||||
buildInputs = [ wayland wayland-protocols ffmpeg x264 libpulseaudio ];
|
buildInputs = [
|
||||||
|
wayland-protocols ffmpeg_4 x264 libpulseaudio ocl-icd opencl-headers
|
||||||
|
];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "Utility program for screen recording of wlroots-based compositors";
|
description = "Utility program for screen recording of wlroots-based compositors";
|
||||||
homepage = https://github.com/ammen99/wf-recorder;
|
inherit (src.meta) homepage;
|
||||||
|
changelog = "https://github.com/ammen99/wf-recorder/releases/tag/v${version}";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
maintainers = with maintainers; [ CrazedProgrammer ];
|
maintainers = with maintainers; [ primeos CrazedProgrammer ];
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue