mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-10 03:23:29 +03:00
lpcnet: Fix tests on aarch64-linux
This commit is contained in:
parent
4b745cb5dd
commit
01fb9591f9
1 changed files with 8 additions and 0 deletions
|
@ -5,6 +5,7 @@
|
||||||
fetchurl,
|
fetchurl,
|
||||||
cmake,
|
cmake,
|
||||||
codec2,
|
codec2,
|
||||||
|
sox,
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation (finalAttrs: {
|
stdenv.mkDerivation (finalAttrs: {
|
||||||
|
@ -47,6 +48,13 @@ stdenv.mkDerivation (finalAttrs: {
|
||||||
];
|
];
|
||||||
|
|
||||||
doCheck = true;
|
doCheck = true;
|
||||||
|
nativeCheckInputs = [
|
||||||
|
# NOTE: From some reason, the tests pass without this on x86_64-linux, but
|
||||||
|
# not on aarch64-linux, although the relevant test is not enabled
|
||||||
|
# conditionally, see:
|
||||||
|
# https://github.com/drowe67/LPCNet/blob/c8e51ac5e2fe674849cb53e7da44689b572cc246/CMakeLists.txt#L220-L225
|
||||||
|
sox
|
||||||
|
];
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "Experimental Neural Net speech coding for FreeDV";
|
description = "Experimental Neural Net speech coding for FreeDV";
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue