infiniband-diags: remove glib dependency

not needed anymore according to release notes
https://github.com/linux-rdma/infiniband-diags/releases/tag/2.2.0
This commit is contained in:
Markus Kowalewski 2019-05-22 10:41:53 +02:00
parent a65dec2ad1
commit c130904547
No known key found for this signature in database
GPG Key ID: 502A248E3FB4FF48

View File

@ -1,5 +1,5 @@
{ stdenv, fetchFromGitHub, autoconf, automake, libtool, pkgconfig, rdma-core,
glib, opensm, perl, makeWrapper }:
{ stdenv, fetchFromGitHub, autoconf, automake, libtool, pkgconfig, rdma-core
, opensm, perl, makeWrapper }:
stdenv.mkDerivation rec {
name = "infiniband-diags-${version}";
@ -14,7 +14,7 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ autoconf automake libtool pkgconfig makeWrapper ];
buildInputs = [ rdma-core glib opensm perl ];
buildInputs = [ rdma-core opensm perl ];
preConfigure = ''
export CFLAGS="-I${opensm}/include/infiniband"