nixpkgs/pkgs/development/libraries/a52dec/default.nix
2020-12-29 09:08:31 +01:00

29 lines
731 B
Nix

{stdenv, fetchurl}:
stdenv.mkDerivation rec {
pname = "a52dec";
version = "0.7.4";
src = fetchurl {
url = "${meta.homepage}/files/${pname}-${version}.tar.gz";
sha256 = "oh1ySrOzkzMwGUNTaH34LEdbXfuZdRPu9MJd5shl7DM=";
};
configureFlags = [
"--enable-shared"
];
# fails 1 out of 1 tests with "BAD GLOBAL SYMBOLS" on i686
# which can also be fixed with
# hardeningDisable = stdenv.lib.optional stdenv.isi686 "pic";
# but it's better to disable tests than loose ASLR on i686
doCheck = !stdenv.isi686;
meta = with stdenv.lib; {
description = "ATSC A/52 stream decoder";
homepage = "https://liba52.sourceforge.net/";
platforms = platforms.unix;
license = licenses.gpl2Plus;
};
}