mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-17 06:06:13 +03:00
olive-editor: fix build by pinning openimageio to 2.4.15.0
Fixes breakage introduced in in #260603
This commit is contained in:
parent
b26e132e79
commit
931de380e1
@ -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";
|
||||
@ -61,7 +73,7 @@ stdenv.mkDerivation {
|
||||
ffmpeg_4
|
||||
frei0r
|
||||
opencolorio
|
||||
openimageio
|
||||
openimageio'
|
||||
imath
|
||||
openexr_3
|
||||
portaudio
|
||||
|
Loading…
Reference in New Issue
Block a user