libogg: allow dependents to find it with cmake

This commit is contained in:
Doron Behar 2024-08-29 09:41:11 +03:00 committed by Emery Hemingway
parent 93f7772ee6
commit 04bf3a5a24

View File

@ -2,6 +2,7 @@
lib,
stdenv,
fetchurl,
cmake,
}:
stdenv.mkDerivation (finalAttrs: {
@ -19,6 +20,14 @@ stdenv.mkDerivation (finalAttrs: {
"doc"
];
nativeBuildInputs = [
# Can also be built with the `./configure` script available in the release,
# however using cmake makes sure the resulting tree would include
# `OggConfig.cmake` and other cmake files useful when packages try to look it
# up with cmake.
cmake
];
meta = {
description = "Media container library to manipulate Ogg files";
longDescription = ''