2020-12-15 09:56:54 +00:00
|
|
|
{ lib
|
|
|
|
, fetchFromGitHub
|
2017-07-19 18:01:40 +01:00
|
|
|
, armadillo
|
|
|
|
, cmake
|
2020-12-15 09:56:54 +00:00
|
|
|
, gmp
|
2017-07-19 18:01:40 +01:00
|
|
|
, glog
|
2021-03-14 18:03:18 +00:00
|
|
|
, gtest
|
2017-07-19 18:01:40 +01:00
|
|
|
, openssl
|
2019-07-25 10:04:55 +01:00
|
|
|
, gflags
|
2021-02-15 20:14:54 +00:00
|
|
|
, gnuradio3_8
|
2021-10-21 13:45:55 +01:00
|
|
|
, thrift
|
2020-12-15 09:56:54 +00:00
|
|
|
, libpcap
|
2017-07-19 18:01:40 +01:00
|
|
|
, orc
|
2021-01-03 09:43:56 +00:00
|
|
|
, pkg-config
|
2017-07-19 18:01:40 +01:00
|
|
|
, uhd
|
2019-08-08 21:11:41 +01:00
|
|
|
, log4cpp
|
2020-03-31 15:47:18 +01:00
|
|
|
, blas, lapack
|
2019-08-08 21:11:41 +01:00
|
|
|
, matio
|
|
|
|
, pugixml
|
|
|
|
, protobuf
|
2017-07-19 18:01:40 +01:00
|
|
|
}:
|
|
|
|
|
2021-02-15 20:14:54 +00:00
|
|
|
gnuradio3_8.pkgs.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "gnss-sdr";
|
2021-10-25 09:27:19 +01:00
|
|
|
# There's an issue with cpufeatures on 0.0.15, see:
|
|
|
|
# https://github.com/NixOS/nixpkgs/pull/142557#issuecomment-950217925
|
2020-08-10 13:03:26 +01:00
|
|
|
version = "0.0.13";
|
2017-07-19 18:01:40 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "gnss-sdr";
|
|
|
|
repo = "gnss-sdr";
|
|
|
|
rev = "v${version}";
|
2020-08-10 13:03:26 +01:00
|
|
|
sha256 = "0a3k47fl5dizzhbqbrbmckl636lznyjby2d2nz6fz21637hvrnby";
|
2017-07-19 18:01:40 +01:00
|
|
|
};
|
|
|
|
|
2020-12-15 09:56:54 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
cmake
|
2021-02-15 20:14:54 +00:00
|
|
|
gnuradio3_8.unwrapped.python
|
|
|
|
gnuradio3_8.unwrapped.python.pkgs.Mako
|
|
|
|
gnuradio3_8.unwrapped.python.pkgs.six
|
2020-12-15 09:56:54 +00:00
|
|
|
];
|
|
|
|
|
2017-07-19 18:01:40 +01:00
|
|
|
buildInputs = [
|
2020-12-15 09:56:54 +00:00
|
|
|
gmp
|
2017-07-19 18:01:40 +01:00
|
|
|
armadillo
|
2021-02-15 20:14:54 +00:00
|
|
|
gnuradio3_8.unwrapped.boost
|
2017-07-19 18:01:40 +01:00
|
|
|
glog
|
2021-03-14 18:03:18 +00:00
|
|
|
gtest
|
2020-12-15 09:56:54 +00:00
|
|
|
openssl
|
2019-07-25 10:04:55 +01:00
|
|
|
gflags
|
2017-07-19 18:01:40 +01:00
|
|
|
orc
|
|
|
|
# UHD support is optional, but gnuradio is built with it, so there's
|
|
|
|
# nothing to be gained by leaving it out.
|
2021-02-15 20:14:54 +00:00
|
|
|
gnuradio3_8.unwrapped.uhd
|
2019-08-08 21:11:41 +01:00
|
|
|
log4cpp
|
2020-03-31 15:47:18 +01:00
|
|
|
blas lapack
|
2019-08-08 21:11:41 +01:00
|
|
|
matio
|
|
|
|
pugixml
|
|
|
|
protobuf
|
2021-02-15 20:14:54 +00:00
|
|
|
gnuradio3_8.pkgs.osmosdr
|
2020-12-15 09:56:54 +00:00
|
|
|
libpcap
|
2021-10-21 13:45:55 +01:00
|
|
|
] ++ lib.optionals (gnuradio3_8.hasFeature "gr-ctrlport") [
|
|
|
|
thrift
|
|
|
|
gnuradio3_8.unwrapped.python.pkgs.thrift
|
2017-07-19 18:01:40 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
cmakeFlags = [
|
2019-07-25 10:04:55 +01:00
|
|
|
"-DGFlags_ROOT_DIR=${gflags}/lib"
|
2017-07-19 18:01:40 +01:00
|
|
|
"-DGLOG_INCLUDE_DIR=${glog}/include"
|
2018-11-10 23:53:53 +00:00
|
|
|
"-DENABLE_UNIT_TESTING=OFF"
|
2017-07-19 18:01:40 +01:00
|
|
|
|
|
|
|
# gnss-sdr doesn't truly depend on BLAS or LAPACK, as long as
|
|
|
|
# armadillo is built using both, so skip checking for them.
|
|
|
|
"-DBLAS=YES"
|
|
|
|
"-DLAPACK=YES"
|
2020-03-31 15:47:18 +01:00
|
|
|
"-DBLAS_LIBRARIES=-lblas"
|
|
|
|
"-DLAPACK_LIBRARIES=-llapack"
|
2017-07-19 18:01:40 +01:00
|
|
|
|
|
|
|
# Similarly, it doesn't actually use gfortran despite checking for
|
|
|
|
# its presence.
|
|
|
|
"-DGFORTRAN=YES"
|
|
|
|
];
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2017-07-19 18:01:40 +01:00
|
|
|
description = "An open source Global Navigation Satellite Systems software-defined receiver";
|
2020-03-14 05:56:58 +00:00
|
|
|
homepage = "https://gnss-sdr.org/";
|
2017-07-19 18:01:40 +01:00
|
|
|
license = licenses.gpl3Plus;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|