libogg, libvorbis: update to 1.3.2, 1.3.4

This commit is contained in:
Emery Hemingway 2014-06-12 18:53:21 -04:00
parent 0e9741df81
commit ca59c577d0
2 changed files with 24 additions and 13 deletions

View file

@ -1,16 +1,20 @@
{ stdenv, fetchurl, xz }:
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "libogg-1.3.1";
let
name = "libogg-1.3.2";
in
stdenv.mkDerivation {
inherit name;
src = fetchurl {
url = "http://downloads.xiph.org/releases/ogg/${name}.tar.xz";
sha256 = "1ynwij1qdibwb2nvcl3ixri0c6pvq1higl96hf87iyqsv1wasnrs";
sha256 = "16z74q422jmprhyvy7c9x909li8cqzmvzyr8cgbm52xcsp6pqs1z";
};
nativeBuildInputs = [ xz ];
meta = {
meta = with stdenv.lib; {
homepage = http://xiph.org/ogg/;
license = licenses.bsd3;
maintainers = [ maintainers.emery ];
platforms = platforms.all;
};
}

View file

@ -1,17 +1,24 @@
{ stdenv, fetchurl, libogg, xz }:
{ stdenv, fetchurl, libogg }:
stdenv.mkDerivation rec {
name = "libvorbis-1.3.3";
let
name = "libvorbis-1.3.4";
in
stdenv.mkDerivation {
inherit name;
src = fetchurl {
url = "http://downloads.xiph.org/releases/vorbis/${name}.tar.xz";
sha256 = "1gby6hapz9njx4l9g0pndyk4q83z5fgrgc30mfwfgx7bllspsk43";
sha256 = "0wpk87jnhngcl3nc5i39flkycx1sjzilx8jjx4zc4p8r55ylj19g";
};
nativeBuildInputs = [ xz ];
propagatedBuildInputs = [ libogg ];
meta = {
doCheck = true;
meta = with stdenv.lib; {
homepage = http://xiph.org/vorbis/;
license = licenses.bsd3;
maintainers = [ maintainers.emery ];
platforms = platforms.all;
};
}