Adding panomatic.

svn path=/nixpkgs/trunk/; revision=14981
This commit is contained in:
Lluís Batlle i Rossell 2009-04-10 09:42:22 +00:00
parent 518eab2313
commit 415150d99c
2 changed files with 22 additions and 0 deletions

View File

@ -0,0 +1,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+";
};
}

View File

@ -1068,6 +1068,10 @@ let
inherit fetchurl stdenv;
};
panomatic = import ../tools/graphics/panomatic {
inherit fetchurl stdenv boost zlib;
};
par2cmdline = import ../tools/networking/par2cmdline {
inherit fetchurl stdenv;
};