2014-06-12 15:53:21 -07:00
|
|
|
{ stdenv, fetchurl }:
|
2005-01-19 13:48:45 -08:00
|
|
|
|
2014-09-24 06:07:18 -07:00
|
|
|
stdenv.mkDerivation rec {
|
2014-06-12 15:53:21 -07:00
|
|
|
name = "libogg-1.3.2";
|
2014-09-24 06:07:18 -07:00
|
|
|
|
2005-01-19 13:48:45 -08:00
|
|
|
src = fetchurl {
|
2012-02-08 11:54:16 -08:00
|
|
|
url = "http://downloads.xiph.org/releases/ogg/${name}.tar.xz";
|
2014-06-12 15:53:21 -07:00
|
|
|
sha256 = "16z74q422jmprhyvy7c9x909li8cqzmvzyr8cgbm52xcsp6pqs1z";
|
2010-08-01 07:33:43 -07:00
|
|
|
};
|
|
|
|
|
2014-06-12 15:53:21 -07:00
|
|
|
meta = with stdenv.lib; {
|
2010-08-01 07:33:43 -07:00
|
|
|
homepage = http://xiph.org/ogg/;
|
2014-06-12 15:53:21 -07:00
|
|
|
license = licenses.bsd3;
|
|
|
|
maintainers = [ maintainers.emery ];
|
|
|
|
platforms = platforms.all;
|
2005-01-19 13:48:45 -08:00
|
|
|
};
|
|
|
|
}
|