mirror of
https://github.com/NixOS/nixos-hardware.git
synced 2025-11-05 01:37:24 +08:00
The CompuLab UCM-iMX95 Evaluation Kit provides a platform for comprehensive evaluation of the NXP i.MX95 application processor. This change adds support in NixOS hardware to provide a template for customized i.MX95-based platforms. UCM-iMX95: https://www.compulab.com/products/som-evaluation-kits/ucm-imx95-evaluation-kit/ Signed-off-by: Govind Singh <govind.singh@tii.ae>
25 lines
481 B
Nix
25 lines
481 B
Nix
{ pkgs, ... }:
|
|
with pkgs;
|
|
stdenv.mkDerivation rec {
|
|
pname = "comms-sbc-firmware";
|
|
version = "v0_6.36";
|
|
|
|
src = builtins.fetchGit {
|
|
url = "git@github.com:tiiuae/comms-sbc-firmware.git";
|
|
rev = "06394d6d983955734257fdc7f719e454a3ce07f4";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
pkgs.rsync
|
|
pkgs.coreutils
|
|
];
|
|
dontUnpack = true;
|
|
dontStrip = true;
|
|
|
|
installPhase = ''
|
|
mkdir -p $out
|
|
# copy everything except .git
|
|
rsync -a --exclude='.git' $src/ $out/
|
|
'';
|
|
}
|