52 lines
928 B
Nix
52 lines
928 B
Nix
{ stdenv
|
|
, lib
|
|
, cmake
|
|
, fetchFromGitHub
|
|
, pkg-config
|
|
, fftwFloat
|
|
, mbedtls
|
|
, boost
|
|
, lksctp-tools
|
|
, libconfig
|
|
, pcsclite
|
|
, uhd
|
|
, soapysdr-with-plugins
|
|
, libbladeRF
|
|
, zeromq
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "srsran";
|
|
version = "22.04.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "srsran";
|
|
repo = "srsran";
|
|
rev = "release_${builtins.replaceStrings ["."] ["_"] version}";
|
|
sha256 = "sha256-jqaGlMhy6L6lRknl6Ezi0n+vNjMb7C+FN9a+QeOy/RY=";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake pkg-config ];
|
|
|
|
buildInputs = [
|
|
fftwFloat
|
|
mbedtls
|
|
boost
|
|
libconfig
|
|
lksctp-tools
|
|
pcsclite
|
|
uhd
|
|
soapysdr-with-plugins
|
|
libbladeRF
|
|
zeromq
|
|
];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://www.srslte.com/";
|
|
description = "Open-source 4G and 5G software radio suite.";
|
|
license = licenses.agpl3;
|
|
platforms = with platforms; linux ;
|
|
maintainers = with maintainers; [ hexagonal-sun ];
|
|
};
|
|
}
|