1{ stdenv, fetchurl }:
2
3stdenv.mkDerivation rec {
4 name = "libogg-1.3.3";
5
6 src = fetchurl {
7 url = "http://downloads.xiph.org/releases/ogg/${name}.tar.xz";
8 sha256 = "022wjlzn8fx7mfby4pcgyjwx8zir7jr7cizichh3jgaki8bwcgsg";
9 };
10
11 outputs = [ "out" "dev" "doc" ];
12
13 meta = with stdenv.lib; {
14 homepage = https://xiph.org/ogg/;
15 license = licenses.bsd3;
16 maintainers = [ maintainers.ehmry ];
17 platforms = platforms.all;
18 };
19}