20 lines
445 B
Nix
20 lines
445 B
Nix
{ stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "libogg-1.3.2";
|
|
|
|
src = fetchurl {
|
|
url = "http://downloads.xiph.org/releases/ogg/${name}.tar.xz";
|
|
sha256 = "16z74q422jmprhyvy7c9x909li8cqzmvzyr8cgbm52xcsp6pqs1z";
|
|
};
|
|
|
|
outputs = [ "dev" "out" "doc" ];
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = http://xiph.org/ogg/;
|
|
license = licenses.bsd3;
|
|
maintainers = [ maintainers.ehmry ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|