biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / video / obs-studio / plugins / wlrobs.nix
blobd6017a649362bef69fda19df60e0a180a839268e
1 { lib, stdenv, fetchFromSourcehut
2 , meson, pkg-config, ninja
3 , wayland, obs-studio, libX11
4 }:
6 stdenv.mkDerivation {
7   pname = "wlrobs";
8   version = "unstable-2023-08-23";
10   src = fetchFromSourcehut {
11     vc = "hg";
12     owner = "~scoopta";
13     repo = "wlrobs";
14     rev =  "f72d5cb3cbbd3983ae6cfd86cb1940be7372681c";
15     hash = "sha256-hiM0d38SSUqbyisP3fAtKRLBDjVKZdU2U1xyXci7yNk=";
16   };
18   nativeBuildInputs = [ meson pkg-config ninja ];
19   buildInputs = [ wayland obs-studio libX11 ];
21   meta = with lib; {
22     description = "Obs-studio plugin that allows you to screen capture on wlroots based wayland compositors";
23     homepage = "https://hg.sr.ht/~scoopta/wlrobs";
24     maintainers = with maintainers; [ grahamc ];
25     license = licenses.gpl3Plus;
26     platforms = [ "x86_64-linux" ];
27   };