Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

olive-editor: fix build by pinning openimageio to 2.4.15.0 #271909

Merged
merged 1 commit into from
Dec 5, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 {
pbsds marked this conversation as resolved.
Show resolved Hide resolved
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