nixpkgs/pkgs/by-name/li/libibmad/package.nix

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

20 lines
462 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, libibumad }:
2014-09-15 02:00:02 +00:00
stdenv.mkDerivation rec {
2021-06-22 13:21:29 +00:00
pname = "libibmad";
version = "1.3.13";
2014-09-15 02:00:02 +00:00
src = fetchurl {
2021-06-22 13:21:29 +00:00
url = "https://www.openfabrics.org/downloads/management/${pname}-${version}.tar.gz";
2017-03-17 00:42:45 +00:00
sha256 = "02sj8k2jpcbiq8s0l2lqk4vwji2dbb2lc730cv1yzv0zr0hxgk8p";
2014-09-15 02:00:02 +00:00
};
buildInputs = [ libibumad ];
meta = with lib; {
homepage = "https://www.openfabrics.org/";
2014-09-15 02:00:02 +00:00
license = licenses.gpl2;
platforms = platforms.linux;
};
}