2024-04-21 15:54:59 +00:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
stdenv,
|
|
|
|
fetchFromGitLab,
|
|
|
|
autoreconfHook,
|
|
|
|
}:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2020-12-29 15:07:52 +00:00
|
|
|
pname = "a52dec";
|
2024-04-21 15:54:59 +00:00
|
|
|
version = "0.8.0";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2024-04-21 15:54:59 +00:00
|
|
|
src = fetchFromGitLab {
|
|
|
|
domain = "git.adelielinux.org";
|
|
|
|
owner = "community";
|
|
|
|
repo = "a52dec";
|
|
|
|
rev = "v${version}";
|
|
|
|
hash = "sha256-Z4riiwetJkhQYa+AD8qOiwB1+cuLbOyN/g7D8HM8Pkw=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2024-04-21 15:54:59 +00:00
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
|
|
|
2020-04-24 23:36:52 +00:00
|
|
|
configureFlags = [
|
|
|
|
"--enable-shared"
|
2022-08-12 12:06:08 +00:00
|
|
|
# Define inline as __attribute__ ((__always_inline__))
|
|
|
|
"ac_cv_c_inline=yes"
|
2020-04-24 23:36:52 +00:00
|
|
|
];
|
|
|
|
|
2024-04-21 15:54:59 +00:00
|
|
|
makeFlags = [ "AR=${stdenv.cc.targetPrefix}ar" ];
|
2021-06-28 23:13:55 +00:00
|
|
|
|
2020-04-24 23:36:52 +00:00
|
|
|
# fails 1 out of 1 tests with "BAD GLOBAL SYMBOLS" on i686
|
|
|
|
# which can also be fixed with
|
2024-09-26 11:04:55 +00:00
|
|
|
# hardeningDisable = lib.optional stdenv.hostPlatform.isi686 "pic";
|
2020-04-24 23:36:52 +00:00
|
|
|
# but it's better to disable tests than loose ASLR on i686
|
2024-09-26 11:04:55 +00:00
|
|
|
doCheck = !stdenv.hostPlatform.isi686;
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2021-02-05 17:12:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "ATSC A/52 stream decoder";
|
2021-08-23 08:02:39 +00:00
|
|
|
homepage = "https://liba52.sourceforge.io/";
|
2024-10-04 16:56:33 +00:00
|
|
|
changelog = "https://git.adelielinux.org/community/a52dec/-/blob/v${version}/ChangeLog?ref_type=tags";
|
2020-12-29 15:07:52 +00:00
|
|
|
license = licenses.gpl2Plus;
|
2024-04-21 15:54:59 +00:00
|
|
|
maintainers = with maintainers; [ wegank ];
|
|
|
|
mainProgram = "a52dec";
|
|
|
|
platforms = platforms.unix;
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|