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