opentoonz: 1.5.0 -> 1.7.1

This commit is contained in:
Naxdy 2024-02-24 16:33:06 +01:00 committed by Naxdy
parent deedbeb686
commit f96aa0d22f
No known key found for this signature in database
GPG Key ID: C0437AAE9755550F
2 changed files with 3 additions and 2 deletions

View File

@ -39,6 +39,7 @@ in stdenv.mkDerivation rec {
"-DCMAKE_SKIP_BUILD_RPATH=ON"
"-DTIFF_INCLUDE_DIR=${libtiff.dev}/include"
"-DTIFF_LIBRARY=${libtiff.out}/lib/libtiff.so"
"-DCMAKE_SKIP_BUILD_RPATH=ON"
];
postInstall = ''

View File

@ -1,10 +1,10 @@
# opentoonz's source archive contains both opentoonz's source and a modified
# version of libtiff that opentoonz requires.
{ fetchFromGitHub, }: rec {
{ fetchFromGitHub }: rec {
versions = {
opentoonz = "1.7.1";
libtiff = "4.0.3"; # The version in thirdparty/tiff-*
libtiff = "4.0.3"; # The version in thirdparty/tiff-*
};
src = fetchFromGitHub {