2008-06-25 16:01:04 +01:00
|
|
|
{stdenv, fetchurl}:
|
2004-04-02 16:36:14 +01:00
|
|
|
|
2008-02-06 19:00:56 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2014-05-04 00:15:16 +01:00
|
|
|
name = "a52dec-0.7.4p4";
|
2018-05-10 09:18:18 +01:00
|
|
|
|
2003-12-03 21:58:16 +00:00
|
|
|
src = fetchurl {
|
2008-02-06 19:00:56 +00:00
|
|
|
url = "${meta.homepage}/files/a52dec-0.7.4.tar.gz";
|
|
|
|
sha256 = "0czccp4fcpf2ykp16xcrzdfmnircz1ynhls334q374xknd5747d2";
|
|
|
|
};
|
|
|
|
|
2019-01-04 19:33:50 +00:00
|
|
|
configureFlags = [
|
|
|
|
"--enable-shared"
|
|
|
|
];
|
|
|
|
|
2018-05-15 01:00:00 +01:00
|
|
|
# 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;
|
|
|
|
|
2008-02-06 19:00:56 +00:00
|
|
|
meta = {
|
2013-10-05 15:22:46 +01:00
|
|
|
description = "ATSC A/52 stream decoder";
|
2008-06-25 16:01:04 +01:00
|
|
|
homepage = http://liba52.sourceforge.net/;
|
2016-08-02 18:50:55 +01:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2018-07-22 16:15:46 +01:00
|
|
|
license = stdenv.lib.licenses.gpl2;
|
2003-12-03 21:58:16 +00:00
|
|
|
};
|
|
|
|
}
|