nixpkgs/pkgs/development/libraries/libibumad/default.nix

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

18 lines
422 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl }:
2014-09-15 01:59:43 +00:00
stdenv.mkDerivation rec {
2021-06-22 13:21:29 +00:00
pname = "libibumad";
version = "1.3.10.2";
2014-09-15 01:59:43 +00:00
src = fetchurl {
2021-06-22 13:21:29 +00:00
url = "https://www.openfabrics.org/downloads/management/${pname}-${version}.tar.gz";
2015-09-18 01:27:06 +00:00
sha256 = "0bkygb3lbpaj6s4vsyixybrrkcnilbijv4ga5p1xdwyr3gip83sh";
2014-09-15 01:59:43 +00:00
};
meta = with lib; {
homepage = "https://www.openfabrics.org/";
2014-09-15 01:59:43 +00:00
license = licenses.gpl2;
platforms = platforms.linux;
};
}