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