summaryrefslogtreecommitdiffstats
path: root/pkgs/development/libraries/aften
diff options
context:
space:
mode:
authorSamuel Dionne-Riel <samuel@dionne-riel.com>2018-12-09 15:03:35 -0500
committerSamuel Dionne-Riel <samuel@dionne-riel.com>2018-12-10 14:55:19 -0500
commitbb27520fa809e36b9ee8eb4f7060a34ddb1f025e (patch)
treec9cf93bf0b7e06b371b27ee97201097208dff0df /pkgs/development/libraries/aften
parentabcb25bd8df9bb53af359392ac7949533ddb85b4 (diff)
aften: Disables build on aarch64-linux
It looks like it would be a trivial fix with `-Wno-shift-negative-value`, but in the end it fails with: ``` [100%] Linking C executable aften libaften_static.a(a52enc.o): In function `aften_encode_init': a52enc.c:(.text+0x303c): undefined reference to `apply_simd_restrictions' collect2: error: ld returned 1 exit status ``` So it looks like it's not simply a warning issue.
Diffstat (limited to 'pkgs/development/libraries/aften')
-rw-r--r--pkgs/development/libraries/aften/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/libraries/aften/default.nix b/pkgs/development/libraries/aften/default.nix
index fb16c71fd195..22e91ee61d7a 100644
--- a/pkgs/development/libraries/aften/default.nix
+++ b/pkgs/development/libraries/aften/default.nix
@@ -16,6 +16,6 @@ stdenv.mkDerivation rec {
description = "An audio encoder which generates compressed audio streams based on ATSC A/52 specification";
homepage = "http://aften.sourceforge.net/";
license = stdenv.lib.licenses.lgpl2;
- platforms = stdenv.lib.platforms.unix;
+ platforms = [ "i686-linux" "x86_64-linux" "x86_64-darwin" ];
};
}