Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions pkgs/by-name/fr/freedv/package.nix
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
}:

let
codec2' = codec2.override { freedvSupport = true; };
ebur128Src = fetchFromGitHub {
owner = "jiixyj";
repo = "libebur128";
Expand Down Expand Up @@ -125,7 +126,7 @@ stdenv.mkDerivation (finalAttrs: {
];

buildInputs = [
codec2
codec2'
libsamplerate
libsndfile
lpcnet
Expand Down Expand Up @@ -157,7 +158,7 @@ stdenv.mkDerivation (finalAttrs: {
(lib.cmakeBool "USE_NATIVE_AUDIO" (with stdenv.hostPlatform; isLinux || isDarwin))
];

env.NIX_CFLAGS_COMPILE = "-I${codec2.src}/src";
env.NIX_CFLAGS_COMPILE = "-I${codec2'.src}/src";

doCheck = false;

Expand Down
6 changes: 0 additions & 6 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -10285,12 +10285,6 @@ with pkgs;
inherit buildPythonApplication;
};

freedv = callPackage ../by-name/fr/freedv/package.nix {
codec2 = codec2.override {
freedvSupport = true;
};
};

inherit
({
freeoffice = callPackage ../applications/office/softmaker/freeoffice.nix { };
Expand Down
Loading