nixpkgs/pkgs/applications/radio/gnss-sdr/default.nix

81 lines
1.5 KiB
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub
, armadillo
, boost
, cmake
, glog
, gmock
, openssl
, gflags
, gnuradio
, orc
, pkgconfig
, pythonPackages
, uhd
2019-08-08 20:11:41 +00:00
, log4cpp
, openblas
, matio
, pugixml
, protobuf
}:
stdenv.mkDerivation rec {
pname = "gnss-sdr";
2020-03-14 05:56:58 +00:00
version = "0.0.12";
src = fetchFromGitHub {
owner = "gnss-sdr";
repo = "gnss-sdr";
rev = "v${version}";
2020-03-14 05:56:58 +00:00
sha256 = "0i9cz85jc2m758pzy3bq4dk4vj9wv7k2z118lasb09xldx01dwsq";
};
buildInputs = [
armadillo
boost.dev
cmake
glog
gmock
openssl.dev
gflags
gnuradio
orc
pkgconfig
pythonPackages.Mako
# UHD support is optional, but gnuradio is built with it, so there's
# nothing to be gained by leaving it out.
uhd
2019-08-08 20:11:41 +00:00
log4cpp
openblas
matio
pugixml
protobuf
];
enableParallelBuilding = true;
cmakeFlags = [
"-DGFlags_ROOT_DIR=${gflags}/lib"
"-DGLOG_INCLUDE_DIR=${glog}/include"
"-DENABLE_UNIT_TESTING=OFF"
# 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"
2019-08-08 20:11:41 +00:00
"-DBLAS_LIBRARIES=-lopenblas"
"-DLAPACK_LIBRARIES=-lopenblas"
# Similarly, it doesn't actually use gfortran despite checking for
# its presence.
"-DGFORTRAN=YES"
];
meta = with stdenv.lib; {
description = "An open source Global Navigation Satellite Systems software-defined receiver";
2020-03-14 05:56:58 +00:00
homepage = "https://gnss-sdr.org/";
license = licenses.gpl3Plus;
platforms = platforms.linux;
};
}