Merge pull request #205959 from danth/coreboot-configurator-desktop

coreboot-configurator: fix exec path in desktop file
This commit is contained in:
Bobby Rong 2022-12-22 23:12:31 +08:00 committed by GitHub
commit c83113b3eb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -33,6 +33,11 @@ stdenv.mkDerivation {
--replace '/usr/sbin/nvramtool' '${nvramtool}/bin/nvramtool'
'';
postFixup = ''
substituteInPlace $out/share/applications/coreboot-configurator.desktop \
--replace '/usr/bin/coreboot-configurator' 'coreboot-configurator'
'';
meta = with lib; {
description = "A simple GUI to change settings in Coreboot's CBFS";
homepage = "https://support.starlabs.systems/kb/guides/coreboot-configurator";