lol
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 18.09-beta 17 lines 447 B view raw
1{ stdenv, fetchurl }: 2 3stdenv.mkDerivation rec { 4 name = "libibumad-1.3.10.2"; 5 6 src = fetchurl { 7 url = "https://www.openfabrics.org/downloads/management/${name}.tar.gz"; 8 sha256 = "0bkygb3lbpaj6s4vsyixybrrkcnilbijv4ga5p1xdwyr3gip83sh"; 9 }; 10 11 meta = with stdenv.lib; { 12 homepage = https://www.openfabrics.org/; 13 license = licenses.gpl2; 14 platforms = platforms.linux; 15 maintainers = with maintainers; [ wkennington ]; 16 }; 17}