Merge pull request #114918 from helsinki-systems/rdma-core-python3

rdma-core: python2 -> python3
This commit is contained in:
markuskowa
2021-03-09 20:42:36 +01:00
committed by GitHub
+2 -2
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"