mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 08:53:21 +00:00
libopus: format with nixfmt
This commit is contained in:
parent
13bc7f0011
commit
3b8afbd096
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user