Commit 865868e9 authored by Vladyslav M.'s avatar Vladyslav M.
Browse files

wf-recorder: format with nixfmt-rfc-style

parent f1290bdf
Loading
Loading
Loading
Loading
+28 −6
Original line number Diff line number Diff line
{ lib, stdenv, fetchFromGitHub
, meson, ninja, pkg-config, scdoc, wayland-scanner
, wayland, wayland-protocols, ffmpeg, x264, libpulseaudio
, mesa # for libgbm
{
  lib,
  stdenv,
  fetchFromGitHub,
  meson,
  ninja,
  pkg-config,
  scdoc,
  wayland-scanner,
  wayland,
  wayland-protocols,
  ffmpeg,
  x264,
  libpulseaudio,
  mesa, # for libgbm
}:

stdenv.mkDerivation rec {
@@ -15,9 +26,20 @@ stdenv.mkDerivation rec {
    hash = "sha256-SXPXvKXn236oO1WakkMNql3lj2flYYlmArVHGomH0/k=";
  };

  nativeBuildInputs = [ meson ninja pkg-config wayland-scanner scdoc ];
  nativeBuildInputs = [
    meson
    ninja
    pkg-config
    wayland-scanner
    scdoc
  ];
  buildInputs = [
    wayland wayland-protocols ffmpeg x264 libpulseaudio mesa
    wayland
    wayland-protocols
    ffmpeg
    x264
    libpulseaudio
    mesa
  ];

  meta = with lib; {