summary refs log tree commit diff
path: root/pkgs/applications/graphics/hugin
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2009-04-05 21:41:38 +0000
committerLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2009-04-05 21:41:38 +0000
commit2dd00f1a5702530263985cead85c51c7681132c3 (patch)
treede58d8b23066c22521b627000b8ca1f67e1ce1a8 /pkgs/applications/graphics/hugin
parent7f9d11782ef8a8af7b18c22e7f9265d807ffaf16 (diff)
downloadnixpkgs-2dd00f1a5702530263985cead85c51c7681132c3.tar
nixpkgs-2dd00f1a5702530263985cead85c51c7681132c3.tar.gz
nixpkgs-2dd00f1a5702530263985cead85c51c7681132c3.tar.bz2
nixpkgs-2dd00f1a5702530263985cead85c51c7681132c3.tar.lz
nixpkgs-2dd00f1a5702530263985cead85c51c7681132c3.tar.xz
nixpkgs-2dd00f1a5702530263985cead85c51c7681132c3.tar.zst
nixpkgs-2dd00f1a5702530263985cead85c51c7681132c3.zip
Adding enblend-fuse, libxmi and hugin. Maybe hugin doesn't run well enough still.
svn path=/nixpkgs/trunk/; revision=14894
Diffstat (limited to 'pkgs/applications/graphics/hugin')
-rw-r--r--pkgs/applications/graphics/hugin/default.nix30
1 files changed, 30 insertions, 0 deletions
diff --git a/pkgs/applications/graphics/hugin/default.nix b/pkgs/applications/graphics/hugin/default.nix
new file mode 100644
index 00000000000..b0bc5317ff9
--- /dev/null
+++ b/pkgs/applications/graphics/hugin/default.nix
@@ -0,0 +1,30 @@
+{stdenv, fetchurl, panotools, cmake, wxGTK, libtiff, libpng, openexr, boost, pkgconfig, exiv2, gettext, ilmbase }:
+
+stdenv.mkDerivation {
+  name = "hugin-0.7.0";
+
+  src = fetchurl {
+    url = mirror://sourceforge/hugin/hugin-0.7.0.tar.gz;
+    sha256 = "0nbrvzz94gqgk2v1900lly101g0wjz4zksnh5718226n2g8zlccf";
+  };
+
+  NIX_CFLAGS_COMPILE = "-I${ilmbase}/include/OpenEXR";
+
+  NIX_LDFLAGS = "-lrt";
+
+  # I added these flags to get all the rpaths right, which I guess they are
+  # taken from the qt4 sources. Not very nice.
+  cmakeFlags = "-DCMAKE_SHARED_LINKER_FLAGS=\"-Wl,-rpath,$out/lib\"" +
+    " -DCMAKE_EXE_LINKER_FLAGS=\"-Wl,-rpath,$out/lib\"" +
+    " -DCMAKE_SKIP_BUILD_RPATH=ON" +
+    " -DCMAKE_BUILD_TYPE=Release" +
+    " -DCMAKE_INSTALL_PREFIX=$out";
+
+  buildInputs = [ cmake panotools wxGTK libtiff libpng openexr boost pkgconfig exiv2 gettext ];
+
+  meta = {
+    homepage = http://hugin.sourceforge.net/;
+    description = "Panoramic imaging toolchain";
+    license = "GPL";
+  };
+}