mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
29 lines
722 B
Nix
29 lines
722 B
Nix
{lib, 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 = lib.optional stdenv.isi686 "pic";
|
|
# but it's better to disable tests than loose ASLR on i686
|
|
doCheck = !stdenv.isi686;
|
|
|
|
meta = with lib; {
|
|
description = "ATSC A/52 stream decoder";
|
|
homepage = "https://liba52.sourceforge.net/";
|
|
platforms = platforms.unix;
|
|
license = licenses.gpl2Plus;
|
|
};
|
|
}
|