2020-05-21 23:57:10 +02:00
|
|
|
# opentoonz's source archive contains both opentoonz's source and a modified
|
|
|
|
# version of libtiff that opentoonz requires.
|
|
|
|
|
|
|
|
{ fetchFromGitHub, }: rec {
|
|
|
|
versions = {
|
2021-06-08 00:59:24 +02:00
|
|
|
opentoonz = "1.5.0";
|
|
|
|
libtiff = "4.0.3"; # The version in thirdparty/tiff-*
|
2020-05-21 23:57:10 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "opentoonz";
|
|
|
|
repo = "opentoonz";
|
|
|
|
rev = "v${versions.opentoonz}";
|
2021-06-08 00:59:24 +02:00
|
|
|
sha256 = "1rw30ksw3zjph1cwxkfvqj0330v8wd4333gn0fdf3cln1w0549lk";
|
2020-05-21 23:57:10 +02:00
|
|
|
};
|
|
|
|
}
|