Skip to content

Commit

Permalink
Merge pull request #57662 from CrazedProgrammer/wf-recorder
Browse files Browse the repository at this point in the history
wf-recorder: init at unstable-2019-03-12
  • Loading branch information
ryantm authored Mar 16, 2019
2 parents 3419fe6 + bc9d5b7 commit 96e4072
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
24 changes: 24 additions & 0 deletions pkgs/applications/video/wf-recorder/default.nix
Original file line number Diff line number Diff line change
@@ -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;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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 { };
Expand Down

0 comments on commit 96e4072

Please sign in to comment.