Skip to content

Commit

Permalink
olive-editor: fix build by pinning openimageio to 2.4.15.0
Browse files Browse the repository at this point in the history
Fixes breakage introduced in in #260603
  • Loading branch information
pbsds committed Dec 4, 2023
1 parent b26e132 commit 931de38
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion pkgs/applications/video/olive-editor/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,18 @@
, qttools
}:

let
# https://github.com/olive-editor/olive/issues/2284
# we patch support for 2.3+, but 2.5 fails
openimageio' = openimageio.overrideAttrs (old: rec {
version = "2.4.15.0";
src = (old.src.override {
rev = "v${version}";
hash = "sha256-I2/JPmUBDb0bw7qbSZcAkYHB2q2Uo7En7ZurMwWhg/M=";
});
});
in

stdenv.mkDerivation {
pname = "olive-editor";
version = "unstable-2023-06-12";
Expand Down Expand Up @@ -61,7 +73,7 @@ stdenv.mkDerivation {
ffmpeg_4
frei0r
opencolorio
openimageio
openimageio'
imath
openexr_3
portaudio
Expand Down

0 comments on commit 931de38

Please sign in to comment.