8 stdenv.mkDerivation (finalAttrs: {
13 url = "http://downloads.xiph.org/releases/ogg/libogg-${finalAttrs.version}.tar.xz";
14 sha256 = "01b7050bghdvbxvw0gzv588fn4a27zh42ljpwzm4vrf8dziipnf4";
24 # Can also be built with the `./configure` script available in the release,
25 # however using cmake makes sure the resulting tree would include
26 # `OggConfig.cmake` and other cmake files useful when packages try to look it
32 (lib.cmakeBool "BUILD_SHARED_LIBS" (!stdenv.hostPlatform.isStatic))
36 description = "Media container library to manipulate Ogg files";
38 Library to work with Ogg multimedia container format.
39 Ogg is flexible file storage and streaming format that supports
40 plethora of codecs. Open format free for anyone to use.
42 homepage = "https://xiph.org/ogg/";
43 license = lib.licenses.bsd3;
44 maintainers = with lib.maintainers; [ ehmry ];
45 platforms = lib.platforms.all;