Skip to content

Commit

Permalink
srsran: add enableLteRates input option
Browse files Browse the repository at this point in the history
  • Loading branch information
markuskowa committed Jan 30, 2025
1 parent 74000f9 commit 7399d4a
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions pkgs/by-name/sr/srsran/package.nix
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
soapysdr-with-plugins,
libbladeRF,
zeromq,
enableLteRates ? false,
enableAvx ? stdenv.hostPlatform.avxSupport,
enableAvx2 ? stdenv.hostPlatform.avx2Support,
enableFma ? stdenv.hostPlatform.fmaSupport,
Expand Down Expand Up @@ -56,6 +57,7 @@ stdenv.mkDerivation rec {

cmakeFlags = [
"-DENABLE_WERROR=OFF"
(lib.cmakeBool "ENABLE_LTE_RATES" enableLteRates)
(lib.cmakeBool "ENABLE_AVX" enableAvx)
(lib.cmakeBool "ENABLE_AVX2" enableAvx2)
(lib.cmakeBool "ENABLE_FMA" enableFma)
Expand Down

0 comments on commit 7399d4a

Please sign in to comment.