about summary refs log tree commit diff
path: root/pkgs/os-specific/linux/firmware/sof-firmware/default.nix
blob: 24ab894c9f062269ffed02fb79e251f979a4f36a (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
34
35
36
37
38
{ lib
, stdenvNoCC
, fetchFromGitHub
}:

stdenvNoCC.mkDerivation rec {
  pname = "sof-firmware";
  version = "2.2.2";

  src = fetchFromGitHub {
    owner = "thesofproject";
    repo = "sof-bin";
    rev = "v${version}";
    sha256 = "sha256-ztewE/8Mc0bbKbxmbJ2sBn3TysuM9hoaSgqrboy77oI=";
  };

  dontFixup = true; # binaries must not be stripped or patchelfed

  # There is no proper structure in the upstream repo.
  # This needs to be adapted by hand for every new release.
  installPhase = ''
    runHook preInstall
    cd "v2.2.x"
    mkdir -p $out/lib/firmware/intel/sof{,-tplg}
    cp -a sof-v2.2/* $out/lib/firmware/intel/sof
    cp -a sof-v2.2.2/* $out/lib/firmware/intel/sof
    cp -a sof-tplg-v2.2.1/* $out/lib/firmware/intel/sof-tplg
    runHook postInstall
  '';

  meta = with lib; {
    description = "Sound Open Firmware";
    homepage = "https://www.sofproject.org/";
    license = with licenses; [ bsd3 isc ];
    maintainers = with maintainers; [ lblasc evenbrenden hmenke ];
    platforms = with platforms; linux;
  };
}