coreboot-configurator: fix exec path in desktop file

This commit is contained in:
Daniel Thwaites 2022-12-13 20:05:09 +00:00
parent 28c1f459e8
commit 4b8c218e77
No known key found for this signature in database
GPG key ID: D8AFC4BF05670F9D

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";