Merge pull request #108595 from iblech/patch-libbladeRF
libbladeRF: unbreak the build
This commit is contained in:
commit
d1f716c6b4
@ -1,4 +1,4 @@
|
|||||||
{ stdenv, lib, fetchFromGitHub, pkgconfig, cmake, git, doxygen, help2man, ncurses, tecla
|
{ stdenv, lib, fetchFromGitHub, fetchpatch, pkgconfig, cmake, git, doxygen, help2man, ncurses, tecla
|
||||||
, libusb1, udev }:
|
, libusb1, udev }:
|
||||||
|
|
||||||
let
|
let
|
||||||
@ -23,6 +23,15 @@ in stdenv.mkDerivation {
|
|||||||
sha256 = "0g89al4kwfbx1l3zjddgb9ay4mhr7zk0ndchca3sm1vq2j47nf4l";
|
sha256 = "0g89al4kwfbx1l3zjddgb9ay4mhr7zk0ndchca3sm1vq2j47nf4l";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
# This patch is required for version 2.2.1. As the patch is already part of
|
||||||
|
# upstream master, it will be incorporated into the next release. The patch
|
||||||
|
# fixes a (well-justified) compiler warning which breaks the build because
|
||||||
|
# we compile with -Werror.
|
||||||
|
patches = [ (fetchpatch {
|
||||||
|
url = "https://github.com/Nuand/bladeRF/commit/163425d48a3b7d8c100d7295220d3648c050d0dd.patch";
|
||||||
|
sha256 = "1swsymlyxm3yk2k8l71z1fv0a5k2rmab02f0c7xkrvk683mq6yxw";
|
||||||
|
}) ];
|
||||||
|
|
||||||
nativeBuildInputs = [ pkgconfig ];
|
nativeBuildInputs = [ pkgconfig ];
|
||||||
# ncurses used due to https://github.com/Nuand/bladeRF/blob/ab4fc672c8bab4f8be34e8917d3f241b1d52d0b8/host/utilities/bladeRF-cli/CMakeLists.txt#L208
|
# ncurses used due to https://github.com/Nuand/bladeRF/blob/ab4fc672c8bab4f8be34e8917d3f241b1d52d0b8/host/utilities/bladeRF-cli/CMakeLists.txt#L208
|
||||||
buildInputs = [ cmake git doxygen help2man tecla libusb1 ]
|
buildInputs = [ cmake git doxygen help2man tecla libusb1 ]
|
||||||
|
Loading…
x
Reference in New Issue
Block a user