20 lines
503 B
Nix
20 lines
503 B
Nix
{ stdenv, fetchurl, libibverbs }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "librdmacm-1.0.21";
|
|
|
|
src = fetchurl {
|
|
url = "https://www.openfabrics.org/downloads/rdmacm/${name}.tar.gz";
|
|
sha256 = "0yx2wr5dvmf5apvc4f4r2f2mlvn05piwvxsqfb60p3rk4jfx56dx";
|
|
};
|
|
|
|
buildInputs = [ libibverbs ];
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://www.openfabrics.org/;
|
|
platforms = with platforms; linux ++ freebsd;
|
|
license = licenses.bsd2;
|
|
maintainers = with maintainers; [ wkennington ];
|
|
};
|
|
}
|