mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
Merge pull request #147419 from arkivm/fix-gnuradio-ais
gnuradio3_8packages.ais: fix build
This commit is contained in:
commit
bcc1eba808
1 changed files with 8 additions and 0 deletions
|
@ -12,6 +12,8 @@
|
||||||
, mpir
|
, mpir
|
||||||
, fftwFloat
|
, fftwFloat
|
||||||
, icu
|
, icu
|
||||||
|
, gnuradio
|
||||||
|
, thrift
|
||||||
}:
|
}:
|
||||||
|
|
||||||
mkDerivation rec {
|
mkDerivation rec {
|
||||||
|
@ -31,6 +33,10 @@ mkDerivation rec {
|
||||||
python
|
python
|
||||||
];
|
];
|
||||||
|
|
||||||
|
cmakeFlags = [
|
||||||
|
"-DCMAKE_EXE_LINKER_FLAGS=-pthread"
|
||||||
|
];
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
cppunit
|
cppunit
|
||||||
osmosdr
|
osmosdr
|
||||||
|
@ -40,6 +46,8 @@ mkDerivation rec {
|
||||||
mpir
|
mpir
|
||||||
fftwFloat
|
fftwFloat
|
||||||
icu
|
icu
|
||||||
|
thrift
|
||||||
|
gnuradio.python.pkgs.thrift
|
||||||
];
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
|
Loading…
Reference in a new issue