1c8aba8334
This makes packages use lapack and blas, which can wrap different BLAS/LAPACK implementations. treewide: cleanup from blas/lapack changes A few issues in the original treewide: - can’t assume blas64 is a bool - unused commented code
81 lines
1.5 KiB
Nix
81 lines
1.5 KiB
Nix
{ stdenv, fetchFromGitHub
|
|
, armadillo
|
|
, boost
|
|
, cmake
|
|
, glog
|
|
, gmock
|
|
, openssl
|
|
, gflags
|
|
, gnuradio
|
|
, orc
|
|
, pkgconfig
|
|
, pythonPackages
|
|
, uhd
|
|
, log4cpp
|
|
, blas, lapack
|
|
, matio
|
|
, pugixml
|
|
, protobuf
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "gnss-sdr";
|
|
version = "0.0.12";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "gnss-sdr";
|
|
repo = "gnss-sdr";
|
|
rev = "v${version}";
|
|
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
|
|
log4cpp
|
|
blas lapack
|
|
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"
|
|
"-DBLAS_LIBRARIES=-lblas"
|
|
"-DLAPACK_LIBRARIES=-llapack"
|
|
|
|
# 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";
|
|
homepage = "https://gnss-sdr.org/";
|
|
license = licenses.gpl3Plus;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|