Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at netboot-syslinux-multiplatform 19 lines 462 B view raw
1{ lib, stdenv, fetchurl, libibumad }: 2 3stdenv.mkDerivation rec { 4 pname = "libibmad"; 5 version = "1.3.13"; 6 7 src = fetchurl { 8 url = "https://www.openfabrics.org/downloads/management/${pname}-${version}.tar.gz"; 9 sha256 = "02sj8k2jpcbiq8s0l2lqk4vwji2dbb2lc730cv1yzv0zr0hxgk8p"; 10 }; 11 12 buildInputs = [ libibumad ]; 13 14 meta = with lib; { 15 homepage = "https://www.openfabrics.org/"; 16 license = licenses.gpl2; 17 platforms = platforms.linux; 18 }; 19}