Skip to content

Commit

Permalink
kdenlive: make glaxnimate non-optional
Browse files Browse the repository at this point in the history
  • Loading branch information
tobiasBora committed Jul 2, 2024
1 parent f8e3db9 commit d27c900
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pkgs/applications/kde/kdenlive/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@
, kdeclarative
, wrapGAppsHook3
, glaxnimate
, enableGlaxnimate ? true
}:

let
Expand Down Expand Up @@ -82,11 +81,12 @@ mkDerivation {
kpurpose
kdeclarative
wrapGAppsHook3
] ++ lib.optional enableGlaxnimate glaxnimate;
glaxnimate
];
# Both MLT and FFMpeg paths must be set or Kdenlive will complain that it
# doesn't find them. See:
# https://github.com/NixOS/nixpkgs/issues/83885
patches = [ ./dependency-paths.patch ] ++ lib.optional enableGlaxnimate ./dependency-paths-glaxnimate.patch;
patches = [ ./dependency-paths.patch ./dependency-paths-glaxnimate.patch ];

# Needed to replace @glaxnimate@ by its path
env = {
Expand Down

0 comments on commit d27c900

Please sign in to comment.