3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #57662 from CrazedProgrammer/wf-recorder

wf-recorder: init at unstable-2019-03-12
This commit is contained in:
Ryan Mulligan 2019-03-16 08:40:39 -07:00 committed by GitHub
commit 96e4072057
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 26 additions and 0 deletions

View file

@ -0,0 +1,24 @@
{ stdenv, fetchFromGitHub, meson, ninja, pkgconfig, wayland, wayland-protocols, ffmpeg, x264 }:
stdenv.mkDerivation rec {
pname = "wf-recorder";
version = "unstable-2019-03-12";
src = fetchFromGitHub {
owner = "ammen99";
repo = pname;
rev = "e6ea77a2569c04975cab8655f5ad4dbcf86df1f5";
sha256 = "1jhj5syzy8i8f9b3j4g12jmc5fcsiv4df9hgribdvw61v5pfz9g1";
};
nativeBuildInputs = [ meson ninja pkgconfig ];
buildInputs = [ wayland wayland-protocols ffmpeg x264 ];
meta = with stdenv.lib; {
description = "Utility program for screen recording of wlroots-based compositors";
homepage = https://github.com/ammen99/wf-recorder;
license = licenses.mit;
maintainers = with maintainers; [ CrazedProgrammer ];
platforms = platforms.linux;
};
}

View file

@ -6156,6 +6156,8 @@ in
welkin = callPackage ../tools/graphics/welkin {};
wf-recorder = callPackage ../applications/video/wf-recorder { };
whipper = callPackage ../applications/audio/whipper { };
whois = callPackage ../tools/networking/whois { };