libopus: format with nixfmt

This commit is contained in:
seth 2024-06-11 20:18:45 -04:00
parent 13bc7f0011
commit 3b8afbd096
No known key found for this signature in database
GPG Key ID: D31BD0D494BBEE86

View File

@ -1,18 +1,19 @@
{ lib
, stdenv
, fetchurl
, gitUpdater
, meson
, python3
, ninja
, fixedPoint ? false
, withCustomModes ? true
, withIntrinsics ? stdenv.hostPlatform.isAarch || stdenv.hostPlatform.isx86
, withAsm ? false
{
lib,
stdenv,
fetchurl,
gitUpdater,
meson,
python3,
ninja,
fixedPoint ? false,
withCustomModes ? true,
withIntrinsics ? stdenv.hostPlatform.isAarch || stdenv.hostPlatform.isx86,
withAsm ? false,
# tests
, ffmpeg-headless
, testers
# tests
ffmpeg-headless,
testers,
}:
stdenv.mkDerivation (finalAttrs: {
@ -33,7 +34,10 @@ stdenv.mkDerivation (finalAttrs: {
patchShebangs meson/
'';
outputs = [ "out" "dev" ];
outputs = [
"out"
"dev"
];
nativeBuildInputs = [
meson