summary refs log blame commit diff
path: root/pkgs/os-specific/linux/firmware/sof-firmware/default.nix
blob: 684d638ce29ff1ad40607df6b52a4c1fb384821c (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                            



                         
                  
 


                            

                                                                    




                                            
                              
 

                                             





                                             
                                                           


                                      
{ stdenv, fetchFromGitHub }:

with stdenv.lib;
stdenv.mkDerivation rec {
  pname = "sof-firmware";
  version = "1.6";

  src = fetchFromGitHub {
    owner = "thesofproject";
    repo = "sof-bin";
    rev = "cbdec6963b2c2d58b0080955d3c11b96ff4c92f0";
    sha256 = "0la2pw1zpv50cywiqcfb00cxqvjc73drxwjchyzi54l508817nxh";
  };

  phases = [ "unpackPhase" "installPhase" ];

  installPhase = ''
    mkdir -p $out/lib/firmware

    patchShebangs go.sh
    ROOT=$out SOF_VERSION=v${version} ./go.sh
  '';

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