mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-22 14:45:27 +00:00
gnuradio: undo ninja (revert to unix make)
* ninja generator fails to create response file See https://gitlab.kitware.com/cmake/cmake/issues/17877
This commit is contained in:
parent
c328738a06
commit
408bc4bf96
|
@ -1,7 +1,7 @@
|
||||||
{ stdenv, fetchFromGitHub, writeText, makeWrapper
|
{ stdenv, fetchFromGitHub, writeText, makeWrapper
|
||||||
# Dependencies documented @ https://gnuradio.org/doc/doxygen/build_guide.html
|
# Dependencies documented @ https://gnuradio.org/doc/doxygen/build_guide.html
|
||||||
# => core dependencies
|
# => core dependencies
|
||||||
, ninja, cmake, pkgconfig, git, boost, cppunit, fftw
|
, cmake, pkgconfig, git, boost, cppunit, fftw
|
||||||
# => python wrappers
|
# => python wrappers
|
||||||
# May be able to upgrade to swig3
|
# May be able to upgrade to swig3
|
||||||
, python, swig2, numpy, scipy, matplotlib
|
, python, swig2, numpy, scipy, matplotlib
|
||||||
|
@ -37,7 +37,7 @@ stdenv.mkDerivation rec {
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
cmake pkgconfig git makeWrapper cppunit orc ninja
|
cmake pkgconfig git makeWrapper cppunit orc
|
||||||
];
|
];
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
|
|
Loading…
Reference in a new issue