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
19 lines
379 B
Nix
19 lines
379 B
Nix
{stdenv, fetchurl}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "a52dec-0.7.4";
|
|
|
|
src = fetchurl {
|
|
url = "${meta.homepage}/files/a52dec-0.7.4.tar.gz";
|
|
sha256 = "0czccp4fcpf2ykp16xcrzdfmnircz1ynhls334q374xknd5747d2";
|
|
};
|
|
|
|
configureFlags = "--enable-shared --disable-static";
|
|
|
|
NIX_CFLAGS_COMPILE = "-fpic";
|
|
|
|
meta = {
|
|
homepage = http://liba52.sourceforge.net/;
|
|
};
|
|
}
|