9bb3fccb5b
continuation of #109595 pkgconfig was aliased in 2018, however, it remained in all-packages.nix due to its wide usage. This cleans up the remaining references to pkgs.pkgsconfig and moves the entry to aliases.nix. python3Packages.pkgconfig remained unchanged because it's the canonical name of the upstream package on pypi.
54 lines
1.3 KiB
Nix
54 lines
1.3 KiB
Nix
{ lib, stdenv, fetchFromGitHub, cmake, pkg-config, docutils
|
|
, pandoc, ethtool, iproute, libnl, udev, python, perl
|
|
, makeWrapper
|
|
} :
|
|
|
|
let
|
|
version = "33.0";
|
|
|
|
in stdenv.mkDerivation {
|
|
pname = "rdma-core";
|
|
inherit version;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "linux-rdma";
|
|
repo = "rdma-core";
|
|
rev = "v${version}";
|
|
sha256 = "04q4z95nxxxjc674qnbwn19bv18nl3x7xwp6aql17h1cw3gdmhw4";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake pkg-config pandoc docutils makeWrapper ];
|
|
buildInputs = [ libnl ethtool iproute udev python perl ];
|
|
|
|
cmakeFlags = [
|
|
"-DCMAKE_INSTALL_RUNDIR=/run"
|
|
"-DCMAKE_INSTALL_SHAREDSTATEDIR=/var/lib"
|
|
];
|
|
|
|
postPatch = ''
|
|
substituteInPlace srp_daemon/srp_daemon.sh.in \
|
|
--replace /bin/rm rm
|
|
'';
|
|
|
|
postInstall = ''
|
|
# cmake script is buggy, move file manually
|
|
mkdir -p $out/${perl.libPrefix}
|
|
mv $out/share/perl5/* $out/${perl.libPrefix}
|
|
'';
|
|
|
|
postFixup = ''
|
|
for pls in $out/bin/{ibfindnodesusing.pl,ibidsverify.pl}; do
|
|
echo "wrapping $pls"
|
|
wrapProgram $pls --prefix PERL5LIB : "$out/${perl.libPrefix}"
|
|
done
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "RDMA Core Userspace Libraries and Daemons";
|
|
homepage = "https://github.com/linux-rdma/rdma-core";
|
|
license = licenses.gpl2;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ markuskowa ];
|
|
};
|
|
}
|