Merge pull request #320704 from JohnAZoidberg/sof-tools

sof-tools: init at 2.9

authored by Aleksana and committed by GitHub d8056138 915188a3

+26
+26
pkgs/by-name/so/sof-tools/package.nix
···
··· 1 + { lib, stdenv, fetchFromGitHub, cmake, alsa-lib }: 2 + 3 + stdenv.mkDerivation rec { 4 + pname = "sof-tools"; 5 + version = "2.9"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "thesofproject"; 9 + repo = "sof"; 10 + rev = "v${version}"; 11 + hash = "sha256-AOBJtC40Lu1gWM8w/Vs/nc540bisg58m+qH16F1e6jY="; 12 + }; 13 + 14 + nativeBuildInputs = [ cmake ]; 15 + buildInputs = [ alsa-lib ]; 16 + sourceRoot = "${src.name}/tools"; 17 + 18 + meta = with lib; { 19 + description = "Tools to develop, test and debug SoF (Sund Open Firmware)"; 20 + homepage = "https://thesofproject.github.io"; 21 + license = licenses.bsd3; 22 + platforms = platforms.unix; 23 + maintainers = [ maintainers.johnazoidberg ]; 24 + mainProgram = "sof-ctl"; 25 + }; 26 + }