d811b4c9d8
* Zapping/VLC/MPlayer: use libXv. * MPlayer: upgrade to 1.0pre4. * Zapping: add libXext to the rpath. I don't understand why this is necessary. Zapping doesn't itself link against libXext, though some of its dependencies do. (Maybe this is due to `--export-dynamic'?) svn path=/nixpkgs/trunk/; revision=990
9 lines
273 B
Nix
9 lines
273 B
Nix
{stdenv, fetchurl}: stdenv.mkDerivation {
|
|
name = "MPlayer-codecs-essential-20040427";
|
|
builder = ./builder.sh;
|
|
src = fetchurl {
|
|
url = http://www2.mplayerhq.hu/MPlayer/releases/codecs/essential-20040427.tar.bz2;
|
|
md5 = "4ffc1682448aa870aec9d8efc1321a09";
|
|
};
|
|
}
|