Skip to content

Commit

Permalink
davinci-resolve: Fix incorrect fields in desktop item
Browse files Browse the repository at this point in the history
- The exec was wrong—perhaps correct once-upon-a-time, but no more
- Differentiate for studio version
  • Loading branch information
amarshall committed Jun 14, 2024
1 parent e9ee548 commit e3bb70e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pkgs/applications/video/davinci-resolve/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -165,10 +165,10 @@ let

desktopItems = [
(makeDesktopItem {
name = "davinci-resolve";
desktopName = "Davinci Resolve";
name = "davinci-resolve${lib.optionalString studioVariant "-studio"}";
desktopName = "Davinci Resolve${lib.optionalString studioVariant " Studio"}";
genericName = "Video Editor";
exec = "resolve";
exec = "davinci-resolve${lib.optionalString studioVariant "-studio"}";
# icon = "DV_Resolve";
comment = "Professional video editing, color, effects and audio post-processing";
categories = [
Expand Down

0 comments on commit e3bb70e

Please sign in to comment.