mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-01 08:39:41 +01:00
53e2a96a9e
Signed-off-by: Ganga Ram <Ganga.Ram@tii.ae>
19 lines
468 B
Nix
19 lines
468 B
Nix
{pkgs, ...}:
|
|
with pkgs;
|
|
stdenv.mkDerivation rec {
|
|
pname = "imx8mq-firmware";
|
|
version = "8.22";
|
|
|
|
src = pkgs.fetchurl {
|
|
url = "https://www.nxp.com/lgfiles/NMG/MAD/YOCTO/firmware-imx-${version}.bin";
|
|
sha256 = "sha256-lMi86sVuxQPCMuYU931rvY4Xx9qnHU5lHqj9UDTDA1A=";
|
|
};
|
|
|
|
dontUnpack = true;
|
|
dontStrip = true;
|
|
|
|
installPhase = ''
|
|
${pkgs.bash}/bin/bash $src --auto-accept --force
|
|
mv firmware-imx-${version} $out
|
|
'';
|
|
}
|