Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 9179c1449db7
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: c60e8f436c1a
Choose a head ref
  • 3 commits
  • 1 file changed
  • 3 contributors

Commits on Oct 3, 2018

  1. opensm: 3.3.20 -> 3.3.21

    Old git source repository was dead. Switched to GitHub
    markuskowa committed Oct 3, 2018
    Copy the full SHA
    ced5563 View commit details

Commits on Oct 8, 2018

  1. Copy the full SHA
    e6c947a View commit details

Commits on Oct 13, 2018

  1. Merge pull request #47732 from markuskowa/opensm-up

    opensm: 3.3.20 -> 3.3.21
    7c6f434c authored Oct 13, 2018
    Copy the full SHA
    c60e8f4 View commit details
Showing with 13 additions and 7 deletions.
  1. +13 −7 pkgs/tools/networking/opensm/default.nix
20 changes: 13 additions & 7 deletions pkgs/tools/networking/opensm/default.nix
Original file line number Diff line number Diff line change
@@ -1,20 +1,26 @@
{ 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 ];

buildInputs = [ rdma-core ];

preConfigure = "bash ./autogen.sh";
preConfigure = ''
patchShebangs ./autogen.sh
./autogen.sh
'';

enableParallelBuilding = true;

meta = with stdenv.lib; {
description = "Infiniband subnet manager";