* Fixes for a52dec and mpeg2dec to make vlc build on x86_64-linux.

* Fixes to make par2cmdline and exult build on gcc 4.x, since gcc
  3.4.x doesn't seem to work on x86_64-linux (NIXPKGS-91).
* Disabled pidgin on x86_64-linux because it needs a dynamic libperl
  which we don't have right now.
* Disabled wine on x86_64-linux because we still lack -m32 support.

svn path=/nixpkgs/trunk/; revision=12187
This commit is contained in:
Eelco Dolstra
2008-06-25 15:01:04 +00:00
parent de4901c4fe
commit 677be83122
7 changed files with 51 additions and 20 deletions

View File

@@ -1,7 +1,8 @@
args: with args;
{stdenv, fetchurl}:
stdenv.mkDerivation rec {
name = "a52dec-0.7.4";
src = fetchurl {
url = "${meta.homepage}/files/a52dec-0.7.4.tar.gz";
sha256 = "0czccp4fcpf2ykp16xcrzdfmnircz1ynhls334q374xknd5747d2";
@@ -9,7 +10,9 @@ stdenv.mkDerivation rec {
configureFlags = "--enable-shared --disable-static";
NIX_CFLAGS_COMPILE = "-fpic";
meta = {
homepage = http://liba52.sourceforge.net;
homepage = http://liba52.sourceforge.net/;
};
}

View File

@@ -1,9 +1,17 @@
{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "mpeg2dec-20050802";
name = "mpeg2dec-0.4.1";
src = fetchurl {
url = ftp://ftp.u-strasbg.fr/pub/videolan/vlc/0.8.4a/contrib/mpeg2dec-20050802.tar.gz;
md5 = "79b3559a9354085fcebb1460dd93d237";
url = http://libmpeg2.sourceforge.net/files/mpeg2dec-0.4.1.tar.gz;
sha256 = "1vny7rg0p2rmic71hli2l2612i5yaw8vy0wsnm5nvhwfiw37cjn7";
};
configureFlags = "--enable-shared --disable-static";
meta = {
homepage = http://libmpeg2.sourceforge.net/;
description = "A free library for decoding mpeg-2 and mpeg-1 video streams";
};
}