2014-06-22 03:39:07 -07:00
|
|
|
{ stdenv, fetchurl, libogg, pkgconfig }:
|
2005-01-19 13:48:45 -08:00
|
|
|
|
2014-09-24 06:07:18 -07:00
|
|
|
stdenv.mkDerivation rec {
|
2015-03-25 16:02:24 -07:00
|
|
|
name = "libvorbis-1.3.5";
|
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/vorbis/${name}.tar.xz";
|
2015-03-25 16:02:24 -07:00
|
|
|
sha256 = "1lg1n3a6r41492r7in0fpvzc7909mc5ir9z0gd3qh2pz4yalmyal";
|
2005-01-19 13:48:45 -08:00
|
|
|
};
|
2009-01-20 01:50:05 -08:00
|
|
|
|
2015-07-26 15:25:53 -07:00
|
|
|
outputs = [ "out" "doc" ];
|
|
|
|
|
2015-05-01 22:02:24 -07:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2015-05-07 01:38:14 -07:00
|
|
|
propagatedBuildInputs = [ libogg ];
|
2010-08-01 07:33:43 -07:00
|
|
|
|
2014-06-12 15:53:21 -07:00
|
|
|
doCheck = true;
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2010-08-01 07:33:43 -07:00
|
|
|
homepage = http://xiph.org/vorbis/;
|
2014-06-12 15:53:21 -07:00
|
|
|
license = licenses.bsd3;
|
2015-12-05 13:41:25 -08:00
|
|
|
maintainers = [ maintainers.ehmry ];
|
2014-06-12 15:53:21 -07:00
|
|
|
platforms = platforms.all;
|
2010-08-01 07:33:43 -07:00
|
|
|
};
|
2005-01-19 13:48:45 -08:00
|
|
|
}
|