mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 08:53:21 +00:00
libogg: allow dependents to find it with cmake
This commit is contained in:
parent
93f7772ee6
commit
04bf3a5a24
@ -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 = ''
|
||||
|
Loading…
Reference in New Issue
Block a user