about summary refs log tree commit diff
path: root/pkgs/tools/graphics/enblend-enfuse/default.nix
blob: 807b0a8ed7956649e32a38e1522355e9d100e679 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{stdenv, fetchurl, libtiff, libpng, lcms, libxmi, boost, mesa, freeglut
, pkgconfig, perl, glew }:

stdenv.mkDerivation rec {
  name = "enblend-enfuse-4.0";

  src = fetchurl {
    url = "mirror://sourceforge/enblend/${name}.tar.gz";
    sha256 = "1i2kq842zrncpadarhcikg447abmh5r7a5js3mzg553ql3148am1";
  };

  buildInputs = [ libtiff libpng lcms libxmi boost mesa freeglut glew ];

  buildNativeInputs = [ perl pkgconfig ];

  meta = {
    homepage = http://enblend.sourceforge.net/;
    description = "Blends away the seams in a panoramic image mosaic using a multiresolution spline";
    license = "GPLv2";
  };
}