libtheora: format with nixfmt

This commit is contained in:
seth
2024-08-02 03:13:12 -04:00
parent 1327403cbe
commit a8a6cb7a09
+24 -7
View File
@@ -1,4 +1,13 @@
{ lib, stdenv, fetchurl, libogg, libvorbis, pkg-config, autoreconfHook, fetchpatch }:
{
lib,
stdenv,
fetchurl,
libogg,
libvorbis,
pkg-config,
autoreconfHook,
fetchpatch,
}:
stdenv.mkDerivation rec {
pname = "libtheora";
@@ -15,17 +24,25 @@ stdenv.mkDerivation rec {
url = "https://github.com/xiph/theora/commit/28cc6dbd9b2a141df94f60993256a5fca368fa54.diff";
sha256 = "16jqrq4h1b3krj609vbpzd5845cvkbh3mwmjrcdg35m490p19x9k";
})
] ++ lib.optionals stdenv.hostPlatform.isMinGW [
./mingw-remove-export.patch
];
] ++ lib.optionals stdenv.hostPlatform.isMinGW [ ./mingw-remove-export.patch ];
configureFlags = [ "--disable-examples" ];
outputs = [ "out" "dev" "devdoc" ];
outputs = [
"out"
"dev"
"devdoc"
];
outputDoc = "devdoc";
nativeBuildInputs = [ pkg-config autoreconfHook ];
propagatedBuildInputs = [ libogg libvorbis ];
nativeBuildInputs = [
pkg-config
autoreconfHook
];
propagatedBuildInputs = [
libogg
libvorbis
];
meta = with lib; {
homepage = "https://www.theora.org/";