Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

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.

+1 -1
+1 -1
pkgs/development/libraries/aften/default.nix
··· 16 description = "An audio encoder which generates compressed audio streams based on ATSC A/52 specification"; 17 homepage = "http://aften.sourceforge.net/"; 18 license = stdenv.lib.licenses.lgpl2; 19 - platforms = stdenv.lib.platforms.unix; 20 }; 21 }
··· 16 description = "An audio encoder which generates compressed audio streams based on ATSC A/52 specification"; 17 homepage = "http://aften.sourceforge.net/"; 18 license = stdenv.lib.licenses.lgpl2; 19 + platforms = [ "i686-linux" "x86_64-linux" "x86_64-darwin" ]; 20 }; 21 }