My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/libraries/libibumad/default.nix

17 lines
422 B

{ 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;
};
}