gnss-sdr: 0.0.9 -> 0.0.11

This commit is contained in:
Markus Kowalewski 2019-08-08 22:11:41 +02:00
parent 347a5d9275
commit 1d428e869a
No known key found for this signature in database
GPG Key ID: D865C8A91D7025EB

View File

@ -11,17 +11,22 @@
, pkgconfig
, pythonPackages
, uhd
, log4cpp
, openblas
, matio
, pugixml
, protobuf
}:
stdenv.mkDerivation rec {
name = "gnss-sdr-${version}";
version = "0.0.9";
version = "0.0.11";
src = fetchFromGitHub {
owner = "gnss-sdr";
repo = "gnss-sdr";
rev = "v${version}";
sha256 = "0gis932ly3vk7d5qvznffp54pkmbw3m6v60mxjfdj5dd3r7vf975";
sha256 = "0ajj0wx68yyzigppxxa1wag3hzkrjj8dqq8k28rj0jhp8a6bw2q7";
};
buildInputs = [
@ -40,6 +45,11 @@ stdenv.mkDerivation rec {
# UHD support is optional, but gnuradio is built with it, so there's
# nothing to be gained by leaving it out.
uhd
log4cpp
openblas
matio
pugixml
protobuf
];
enableParallelBuilding = true;
@ -53,6 +63,8 @@ stdenv.mkDerivation rec {
# armadillo is built using both, so skip checking for them.
"-DBLAS=YES"
"-DLAPACK=YES"
"-DBLAS_LIBRARIES=-lopenblas"
"-DLAPACK_LIBRARIES=-lopenblas"
# Similarly, it doesn't actually use gfortran despite checking for
# its presence.