summary refs log tree commit diff
path: root/pkgs/by-name/ar/armbian-firmware/package.nix
blob: 6e97c5908871eebc9d3ecef35910140aa2b685e3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{ stdenvNoCC, lib, fetchFromGitHub }:
stdenvNoCC.mkDerivation rec {
  pname = "armbian-firmware";
  version = "unstable-2023-09-16";

  src = fetchFromGitHub {
    owner = "armbian";
    repo = "firmware";
    rev = "01f9809bb0c4bd60c0c84b9438486b02d58b03f7";
    hash = "sha256-ozKADff7lFjIT/Zf5dkNlCe8lOK+kwYb/60NaCJ8i2k=";
  };

  installPhase = ''
    runHook preInstall

    mkdir -p $out/lib/firmware
    cp -a * $out/lib/firmware/

    runHook postInstall
  '';

  # Firmware blobs do not need fixing and should not be modified
  dontBuild = true;
  dontFixup = true;

  meta = with lib; {
    description = "Firmware from Armbian";
    homepage = "https://github.com/armbian/firmware";
    license = licenses.unfree;
    platforms = platforms.all;
    maintainers = with maintainers; [ zaldnoay ];
  };
}