mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-03 20:33:21 +00:00
5a07d74387
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/infiniband-diags/versions.
45 lines
1.2 KiB
Nix
45 lines
1.2 KiB
Nix
{ stdenv, fetchFromGitHub, autoconf, automake, libtool, pkgconfig, rdma-core,
|
|
glib, opensm, perl, makeWrapper }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "infiniband-diags-${version}";
|
|
version = "2.1.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "linux-rdma";
|
|
repo = "infiniband-diags";
|
|
rev = version;
|
|
sha256 = "1qgyyvnig28x1m47df0zx6b2rcb5nm1k8r02zx7wzfb5pn9k2zh1";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoconf automake libtool pkgconfig makeWrapper ];
|
|
|
|
buildInputs = [ rdma-core glib opensm perl ];
|
|
|
|
preConfigure = ''
|
|
export CFLAGS="-I${opensm}/include/infiniband"
|
|
./autogen.sh
|
|
'';
|
|
|
|
configureFlags = [ "--with-perl-installdir=\${out}/lib/perl5/site_perl" "--sbindir=\${out}/bin" ];
|
|
|
|
postInstall = ''
|
|
rmdir $out/var/run $out/var
|
|
'';
|
|
|
|
postFixup = ''
|
|
for pls in $out/bin/{ibfindnodesusing.pl,ibidsverify.pl}; do
|
|
echo "wrapping $pls"
|
|
wrapProgram $pls --prefix PERL5LIB : "$out/lib/perl5/site_perl"
|
|
done
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Utilities designed to help configure, debug, and maintain infiniband fabrics";
|
|
homepage = http://linux-rdma.org/;
|
|
license = licenses.bsd2; # Or GPL 2
|
|
maintainers = [ maintainers.aij ];
|
|
platforms = [ "x86_64-linux" ];
|
|
};
|
|
}
|