mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-22 14:45:27 +00:00
libibverbs: Add package
This commit is contained in:
parent
33cd48a470
commit
2636436359
17
pkgs/development/libraries/libibverbs/default.nix
Normal file
17
pkgs/development/libraries/libibverbs/default.nix
Normal file
|
@ -0,0 +1,17 @@
|
|||
{ stdenv, fetchurl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "libibverbs-1.1.8";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://www.openfabrics.org/downloads/verbs/${name}.tar.gz";
|
||||
sha256 = "13w2j5lrrqxxxvhpxbqb70x7wy0h8g329inzgfrvqv8ykrknwxkw";
|
||||
};
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = https://www.openfabrics.org/;
|
||||
license = licenses.bsd2;
|
||||
platforms = platforms.unix;
|
||||
maintainers = with maintainers; [ wkennington ];
|
||||
};
|
||||
}
|
|
@ -1554,6 +1554,8 @@ let
|
|||
|
||||
libtorrent = callPackage ../tools/networking/p2p/libtorrent { };
|
||||
|
||||
libibverbs = callPackage ../development/libraries/libibverbs { };
|
||||
|
||||
logcheck = callPackage ../tools/system/logcheck {
|
||||
inherit (perlPackages) mimeConstruct;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue