mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-19 02:44:17 +03:00
a20e31bf09
(The qtbase diamond-dependency problem was resolved in 4bac8a7a00
)
17 lines
444 B
Nix
17 lines
444 B
Nix
# opentoonz's source archive contains both opentoonz's source and a modified
|
|
# version of libtiff that opentoonz requires.
|
|
|
|
{ fetchFromGitHub, }: rec {
|
|
versions = {
|
|
opentoonz = "1.5.0";
|
|
libtiff = "4.0.3"; # The version in thirdparty/tiff-*
|
|
};
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "opentoonz";
|
|
repo = "opentoonz";
|
|
rev = "v${versions.opentoonz}";
|
|
sha256 = "1rw30ksw3zjph1cwxkfvqj0330v8wd4333gn0fdf3cln1w0549lk";
|
|
};
|
|
}
|