From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:38337) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jPBvX-0002XZ-Ut for guix-patches@gnu.org; Thu, 16 Apr 2020 17:20:05 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1jPBvW-0004xP-F9 for guix-patches@gnu.org; Thu, 16 Apr 2020 17:20:03 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:56167) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1jPBvV-0004x6-RJ for guix-patches@gnu.org; Thu, 16 Apr 2020 17:20:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1jPBvV-00014D-K7 for guix-patches@gnu.org; Thu, 16 Apr 2020 17:20:01 -0400 Subject: [bug#40673] [PATCH v2] gnu: add wf-recorder Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:35529) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jPBa4-0002qL-45 for guix-patches@gnu.org; Thu, 16 Apr 2020 16:57:53 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1jPBa2-0008Is-IJ for guix-patches@gnu.org; Thu, 16 Apr 2020 16:57:51 -0400 Received: from aibo.runbox.com ([91.220.196.211]:58304) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1jPBa2-0008I7-16 for guix-patches@gnu.org; Thu, 16 Apr 2020 16:57:50 -0400 Received: from [10.9.9.203] (helo=mailfront21.runbox) by mailtransmit02.runbox with esmtp (Exim 4.86_2) (envelope-from ) id 1jPBZz-0002Hj-Gy for guix-patches@gnu.org; Thu, 16 Apr 2020 22:57:47 +0200 From: Alex McGrath Date: Thu, 16 Apr 2020 21:55:28 +0100 Message-Id: <20200416205527.22890-1-amk@amk.ie> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 40673@debbugs.gnu.org Cc: Alex McGrath A v2 patch as i forgot to add a copyright notice, and forgot to change the homepage --- gnu/packages/video.scm | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm index 62cc423c09..72746ea2fb 100644 --- a/gnu/packages/video.scm +++ b/gnu/packages/video.scm @@ -39,6 +39,7 @@ ;;; Copyright © 2020 Josh Holland ;;; Copyright © 2020 Brice Waegeneire ;;; Copyright © 2020 Vincent Legoll +;;; Copyright © 2020 Alex McGrath ;;; ;;; This file is part of GNU Guix. ;;; @@ -3920,3 +3921,33 @@ work-in-progress, aiming to support video-on-demand and live streaming applications. It only supports Intel-compatible CPUs (x86).") (home-page "https://github.com/OpenVisualCloud/SVT-AV1") (license license:bsd-2))) + +(define-public wf-recorder + (package + (name "wf-recorder") + (version "0.2.1") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/ammen99/wf-recorder.git") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1cw6kpcbl33wh95pvy32xrsrm6kkk1awccr3phyh885xjs3b3iim")))) + (build-system meson-build-system) + (native-inputs + `(("pkg-config" ,pkg-config))) + (inputs + `(("ffmpeg" ,ffmpeg) + ("pulseaudio" ,pulseaudio) + ("wayland" ,wayland) + ("wayland-protocols" ,wayland-protocols) + ("libx264" ,libx264))) + (home-page "https://github.com/ammen99/wf-recorder.git") + (synopsis "Screen recorder for wlroots-based compositors") + (description + "wf-recorder is a utility program for screen recording of wlroots-based +compositors (more specifically, those that support wlr-screencopy-v1 and +xdg-output)") + (license license:mit))) -- 2.26.0