summary refs log tree commit diff
path: root/pkgs/applications/graphics/panotools
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2009-04-05 21:41:24 +0000
committerLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2009-04-05 21:41:24 +0000
commit7f9d11782ef8a8af7b18c22e7f9265d807ffaf16 (patch)
treeaf406329978aa1f285b4dc9d2131ee1c4374bcd9 /pkgs/applications/graphics/panotools
parent0b76035b66b24469f23c8c25a0fc991f0988e1d6 (diff)
downloadnixpkgs-7f9d11782ef8a8af7b18c22e7f9265d807ffaf16.tar
nixpkgs-7f9d11782ef8a8af7b18c22e7f9265d807ffaf16.tar.gz
nixpkgs-7f9d11782ef8a8af7b18c22e7f9265d807ffaf16.tar.bz2
nixpkgs-7f9d11782ef8a8af7b18c22e7f9265d807ffaf16.tar.lz
nixpkgs-7f9d11782ef8a8af7b18c22e7f9265d807ffaf16.tar.xz
nixpkgs-7f9d11782ef8a8af7b18c22e7f9265d807ffaf16.tar.zst
nixpkgs-7f9d11782ef8a8af7b18c22e7f9265d807ffaf16.zip
Adding panotools.
svn path=/nixpkgs/trunk/; revision=14893
Diffstat (limited to 'pkgs/applications/graphics/panotools')
-rw-r--r--pkgs/applications/graphics/panotools/default.nix23
1 files changed, 23 insertions, 0 deletions
diff --git a/pkgs/applications/graphics/panotools/default.nix b/pkgs/applications/graphics/panotools/default.nix
new file mode 100644
index 00000000000..90bc8e64b25
--- /dev/null
+++ b/pkgs/applications/graphics/panotools/default.nix
@@ -0,0 +1,23 @@
+{stdenv, fetchsvn, libjpeg, libpng, libtiff, automake, libtool, autoconf }:
+
+stdenv.mkDerivation {
+  name = "panotools-r955";
+
+  src = fetchsvn {
+    url = https://panotools.svn.sourceforge.net/svnroot/panotools/trunk/libpano;
+    rev = 955;
+  };
+
+  configurePhase = ''
+    export AUTOGEN_CONFIGURE_ARGS="--prefix $out"
+    ./bootstrap
+  '';
+
+  buildInputs = [ libjpeg libpng libtiff automake libtool autoconf ];
+
+  meta = {
+    homepage = http://panotools.sourceforge.net/;
+    description = "Panorama Tools";
+    license = "GPL";
+  };
+}