Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
429 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
stdenv,
fetchurl,
}:
stdenv.mkDerivation rec {
pname = "libibumad";
version = "1.3.10.2";
src = fetchurl {
url = "https://www.openfabrics.org/downloads/management/${pname}-${version}.tar.gz";
sha256 = "0bkygb3lbpaj6s4vsyixybrrkcnilbijv4ga5p1xdwyr3gip83sh";
};
meta = with lib; {
homepage = "https://www.openfabrics.org/";
license = licenses.gpl2;
platforms = platforms.linux;
};
}