2020-09-25 04:45:31 +00:00
|
|
|
# opentoonz's source archive contains both opentoonz's source and a modified
|
|
|
|
# version of libtiff that opentoonz requires.
|
|
|
|
|
|
|
|
{ fetchFromGitHub, }: rec {
|
|
|
|
versions = {
|
2022-01-07 04:07:37 +00:00
|
|
|
opentoonz = "1.5.0";
|
|
|
|
libtiff = "4.0.3"; # The version in thirdparty/tiff-*
|
2020-09-25 04:45:31 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "opentoonz";
|
|
|
|
repo = "opentoonz";
|
|
|
|
rev = "v${versions.opentoonz}";
|
2022-01-07 04:07:37 +00:00
|
|
|
sha256 = "1rw30ksw3zjph1cwxkfvqj0330v8wd4333gn0fdf3cln1w0549lk";
|
2020-09-25 04:45:31 +00:00
|
|
|
};
|
|
|
|
}
|