aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/applications/graphics/opentoonz/source.nix
blob: 7378d2f5f9654f8b9e20852c0b2393adecef5a78 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# opentoonz's source archive contains both opentoonz's source and a modified
# version of libtiff that opentoonz requires.

{ fetchFromGitHub, }: rec {
  versions = {
    opentoonz = "1.4.0";
    libtiff = "4.0.3";
  };

  src = fetchFromGitHub {
    owner = "opentoonz";
    repo = "opentoonz";
    rev = "v${versions.opentoonz}";
    sha256 = "0vgclx2yydsm5i2smff3fj8m750nhf35wfhva37kywgws01s189b";
  };
}