lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

opensm: init at 3.3.20

+28
+26
pkgs/tools/networking/opensm/default.nix
··· 1 + { stdenv, fetchgit, autoconf, automake, libtool, bison, flex, rdma-core }: 2 + 3 + stdenv.mkDerivation rec { 4 + name = "opensm-${version}"; 5 + version = "3.3.20"; 6 + 7 + src = fetchgit { 8 + url = git://git.openfabrics.org/~halr/opensm.git; 9 + rev = name; 10 + sha256 = "1hlrn5z32yd4w8bj4z6bsfv84pk178s4rnppbabyjqv1rg3c58wl"; 11 + }; 12 + 13 + nativeBuildInputs = [ autoconf automake libtool bison flex ]; 14 + 15 + buildInputs = [ rdma-core ]; 16 + 17 + preConfigure = "bash ./autogen.sh"; 18 + 19 + meta = with stdenv.lib; { 20 + description = "Infiniband subnet manager"; 21 + homepage = https://www.openfabrics.org/; 22 + license = licenses.gpl2; # dual licensed as 2-clause BSD 23 + maintainers = [ maintainers.aij ]; 24 + platforms = [ "x86_64-linux" ]; 25 + }; 26 + }
+2
pkgs/top-level/all-packages.nix
··· 3960 3960 inherit (darwin.apple_sdk.frameworks) Carbon; 3961 3961 }; 3962 3962 3963 + opensm = callPackage ../tools/networking/opensm { }; 3964 + 3963 3965 openssh = 3964 3966 callPackage ../tools/networking/openssh { 3965 3967 hpnSupport = false;