7 stdenv.mkDerivation rec {
8 pname = "mlxbf-bootimages";
9 version = "4.8.0-13249";
12 url = "https://linux.mellanox.com/public/repo/bluefield/${version}/bootimages/prod/${pname}-signed_${version}_arm64.deb";
13 hash = "sha256-VwbngA2UpHtvhCmL21qrebVSNG6/4PbkhnVAmERpek0=";
20 unpackCmd = "dpkg -x $curSrc src";
22 # Only install /lib. /usr only contains the licenses which are also available
25 find lib -type f -exec install -D {} $out/{} \;
29 description = "BlueField boot images";
30 homepage = "https://github.com/Mellanox/bootimages";
31 # It is unclear if the bootimages themselves are Open Source software. They
32 # never explicitly say they are. They contain Open Source software licensed
33 # under bsd2, bsd2Patent, bsd3. However, it is probably safer to assume
34 # they are unfree. See https://github.com/Mellanox/bootimages/issues/3
35 license = licenses.unfree;
36 platforms = [ "aarch64-linux" ];
37 maintainers = with maintainers; [ nikstur thillux ];