about summary refs log tree commit diff
path: root/pkgs/tools/graphics/panomatic/default.nix
blob: 1a7c3317cf9f4ca2eebd4f61e4055d694a4a59e8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{stdenv, fetchurl, boost, zlib}:

stdenv.mkDerivation {
  name = "panomatic-0.9.4";

  src = fetchurl {
    url = http://aorlinsk2.free.fr/panomatic/bin/panomatic-0.9.4-src.tar.bz2;
    sha256 = "0vfkj3k3y8narwwijh996q2zzprjxbr2fhym15nm4fkq14yw4wwn";
  };

  buildInputs = [ boost zlib ];

  meta = {
    homepage = http://aorlinsk2.free.fr/panomatic/;
    description = "Tool that automates the creation of control points in Hugin";
    license = "GPLv2+";
  };
}