rdma-core: python2 -> python3

This commit is contained in:
ajs124 2021-03-03 00:27:44 +01:00
parent 544139a32b
commit 8cb59eb130

View File

@ -1,5 +1,5 @@
{ lib, stdenv, fetchFromGitHub, cmake, pkg-config, docutils { lib, stdenv, fetchFromGitHub, cmake, pkg-config, docutils
, pandoc, ethtool, iproute, libnl, udev, python, perl , pandoc, ethtool, iproute, libnl, udev, python3, perl
, makeWrapper , makeWrapper
} : } :
@ -18,7 +18,7 @@ in stdenv.mkDerivation {
}; };
nativeBuildInputs = [ cmake pkg-config pandoc docutils makeWrapper ]; nativeBuildInputs = [ cmake pkg-config pandoc docutils makeWrapper ];
buildInputs = [ libnl ethtool iproute udev python perl ]; buildInputs = [ libnl ethtool iproute udev python3 perl ];
cmakeFlags = [ cmakeFlags = [
"-DCMAKE_INSTALL_RUNDIR=/run" "-DCMAKE_INSTALL_RUNDIR=/run"