1 { lib, stdenv, fetchurl }:
3 stdenv.mkDerivation rec {
8 url = "http://downloads.xiph.org/releases/ogg/${pname}-${version}.tar.xz";
9 sha256 = "01b7050bghdvbxvw0gzv588fn4a27zh42ljpwzm4vrf8dziipnf4";
12 outputs = [ "out" "dev" "doc" ];
15 description = "Media container library to manipulate Ogg files";
17 Library to work with Ogg multimedia container format.
18 Ogg is flexible file storage and streaming format that supports
19 plethora of codecs. Open format free for anyone to use.
21 homepage = "https://xiph.org/ogg/";
22 license = licenses.bsd3;
23 maintainers = [ maintainers.ehmry ];
24 platforms = platforms.all;