about summary refs log tree commit diff
path: root/pkgs/tools/graphics/panomatic
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2009-04-10 09:42:22 +0000
committerLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2009-04-10 09:42:22 +0000
commit415150d99ca499b07da810666097edcde0402241 (patch)
tree72adc9d3c88dc20ffcf47e3e09d99d0df39b6c82 /pkgs/tools/graphics/panomatic
parent518eab2313267e63401c87ed9848d46bef420ecf (diff)
downloadnixlib-415150d99ca499b07da810666097edcde0402241.tar
nixlib-415150d99ca499b07da810666097edcde0402241.tar.gz
nixlib-415150d99ca499b07da810666097edcde0402241.tar.bz2
nixlib-415150d99ca499b07da810666097edcde0402241.tar.lz
nixlib-415150d99ca499b07da810666097edcde0402241.tar.xz
nixlib-415150d99ca499b07da810666097edcde0402241.tar.zst
nixlib-415150d99ca499b07da810666097edcde0402241.zip
Adding panomatic.
svn path=/nixpkgs/trunk/; revision=14981
Diffstat (limited to 'pkgs/tools/graphics/panomatic')
-rw-r--r--pkgs/tools/graphics/panomatic/default.nix18
1 files changed, 18 insertions, 0 deletions
diff --git a/pkgs/tools/graphics/panomatic/default.nix b/pkgs/tools/graphics/panomatic/default.nix
new file mode 100644
index 000000000000..1a7c3317cf9f
--- /dev/null
+++ b/pkgs/tools/graphics/panomatic/default.nix
@@ -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+";
+  };
+}