mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 03:56:17 +03:00
b5c1deca8a
He prefers to contribute to his own nixpkgs fork triton. Since he is still marked as maintainer in many packages this leaves the wrong impression he still maintains those.
20 lines
486 B
Nix
20 lines
486 B
Nix
{ stdenv, fetchurl, zlib, libibmad }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "mstflint-4.4.0-1.12.gd1edd58";
|
|
|
|
src = fetchurl {
|
|
url = "https://www.openfabrics.org/downloads/mstflint/${name}.tar.gz";
|
|
sha256 = "0kg33i5s5zdc7kigww62r0b824zfw06r757fl6jwrq7lj91j0380";
|
|
};
|
|
|
|
buildInputs = [ zlib libibmad ];
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://www.openfabrics.org/;
|
|
license = licenses.gpl2;
|
|
platforms = platforms.linux;
|
|
broken = true; # 2018-04-11
|
|
};
|
|
}
|