opensm: 3.3.20 -> 3.3.21

Old git source repository was dead. Switched to GitHub
This commit is contained in:
Markus Kowalewski 2018-10-03 12:59:07 +02:00
parent 358a1c8a28
commit ced5563056
No known key found for this signature in database
GPG key ID: 502A248E3FB4FF48

View file

@ -1,13 +1,14 @@
{ stdenv, fetchgit, autoconf, automake, libtool, bison, flex, rdma-core }:
{ stdenv, fetchFromGitHub, autoconf, automake, libtool, bison, flex, rdma-core }:
stdenv.mkDerivation rec {
name = "opensm-${version}";
version = "3.3.20";
version = "3.3.21";
src = fetchgit {
url = git://git.openfabrics.org/~halr/opensm.git;
rev = name;
sha256 = "1hlrn5z32yd4w8bj4z6bsfv84pk178s4rnppbabyjqv1rg3c58wl";
src = fetchFromGitHub {
owner = "linux-rdma";
repo = "opensm";
rev = "${version}";
sha256 = "0iikw28vslxq3baq9qmmw08yay7l524wciz7dv7km09ylcbx23b7";
};
nativeBuildInputs = [ autoconf automake libtool bison flex ];
@ -16,6 +17,8 @@ stdenv.mkDerivation rec {
preConfigure = "bash ./autogen.sh";
enableParallelBuilding = true;
meta = with stdenv.lib; {
description = "Infiniband subnet manager";
homepage = https://www.openfabrics.org/;