sof-firmware: remove use of with lib;

This commit is contained in:
Mikael Voss
2025-04-24 14:19:40 +02:00
parent fdac649609
commit f2685502fa
+5 -5
View File
@@ -27,20 +27,20 @@ stdenvNoCC.mkDerivation rec {
runHook postInstall
'';
meta = with lib; {
meta = {
changelog = "https://github.com/thesofproject/sof-bin/releases/tag/v${version}";
description = "Sound Open Firmware";
homepage = "https://www.sofproject.org/";
license = with licenses; [
license = with lib.licenses; [
bsd3
isc
];
maintainers = with maintainers; [
maintainers = with lib.maintainers; [
lblasc
evenbrenden
hmenke
];
platforms = with platforms; linux;
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
platforms = with lib.platforms; linux;
sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
};
}