b5c1deca8a
He prefers to contribute to his own nixpkgs fork triton. Since he is still marked as maintainer in many packages this leaves the wrong impression he still maintains those.
19 lines
434 B
Nix
19 lines
434 B
Nix
{ stdenv, fetchurl, libibumad }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "libibmad-1.3.13";
|
|
|
|
src = fetchurl {
|
|
url = "https://www.openfabrics.org/downloads/management/${name}.tar.gz";
|
|
sha256 = "02sj8k2jpcbiq8s0l2lqk4vwji2dbb2lc730cv1yzv0zr0hxgk8p";
|
|
};
|
|
|
|
buildInputs = [ libibumad ];
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://www.openfabrics.org/;
|
|
license = licenses.gpl2;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|