mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 04:43:09 +03:00
* Updated libogg and libvorbis.
svn path=/nixpkgs/trunk/; revision=22838
This commit is contained in:
parent
283005d568
commit
f1b8c40eb4
@ -1,9 +1,14 @@
|
||||
{stdenv, fetchurl}:
|
||||
{ stdenv, fetchurl }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "libogg-1.1.4";
|
||||
stdenv.mkDerivation rec {
|
||||
name = "libogg-1.2.0";
|
||||
|
||||
src = fetchurl {
|
||||
url = http://downloads.xiph.org/releases/ogg/libogg-1.1.4.tar.gz;
|
||||
sha256 = "00z15ha73yfv7zn9z2z5yvc8g53ci6vn12vpc0l7qhc8zn1w2m4k";
|
||||
url = "http://downloads.xiph.org/releases/ogg/${name}.tar.gz";
|
||||
sha256 = "0sgbb7n8zwmycj2iid3h0hrxqg7ql9z34lg51bl99kca4cz9h3gk";
|
||||
};
|
||||
|
||||
meta = {
|
||||
homepage = http://xiph.org/ogg/;
|
||||
};
|
||||
}
|
||||
|
@ -1,11 +1,16 @@
|
||||
{stdenv, fetchurl, libogg}:
|
||||
{ stdenv, fetchurl, libogg }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "libvorbis-1.2.3";
|
||||
stdenv.mkDerivation rec {
|
||||
name = "libvorbis-1.3.1";
|
||||
|
||||
src = fetchurl {
|
||||
url = http://downloads.xiph.org/releases/vorbis/libvorbis-1.2.3.tar.bz2;
|
||||
sha256 = "0aj9jfxsp89vs78321sqvj8my4bxcb7pjr959nhi9wj0r032gyfv";
|
||||
url = "http://downloads.xiph.org/releases/vorbis/${name}.tar.bz2";
|
||||
sha256 = "1q6gah9g6w5gxjq95x1x81a4w76p3caivq1bw4hxs0z9rx05qj22";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ libogg ];
|
||||
|
||||
meta = {
|
||||
homepage = http://xiph.org/vorbis/;
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user