677be83122
* 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
18 lines
442 B
Nix
18 lines
442 B
Nix
{stdenv, fetchurl}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "mpeg2dec-0.4.1";
|
|
|
|
src = fetchurl {
|
|
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";
|
|
};
|
|
}
|