From a4514f36b947fa05ca5935811c0836542636e669 Mon Sep 17 00:00:00 2001 From: viric Date: Sun, 29 Nov 2009 19:22:22 +0000 Subject: [PATCH] Fixing hugin (we now install boost without tags on library file names, and the hugin expression still used the tag for 'multithread' in the boost library file names). git-svn-id: https://svn.nixos.org/repos/nix/nixpkgs/trunk@18698 70bd8c7a-acb8-0310-9f0d-9cc1c95dcdbb --- pkgs/applications/graphics/hugin/default.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/applications/graphics/hugin/default.nix b/pkgs/applications/graphics/hugin/default.nix index ae6b7a43d..134c6ae49 100644 --- a/pkgs/applications/graphics/hugin/default.nix +++ b/pkgs/applications/graphics/hugin/default.nix @@ -20,7 +20,7 @@ stdenv.mkDerivation { cmakeFlags = "-DCMAKE_SHARED_LINKER_FLAGS=\"-Wl,-rpath,$out/lib\"" + " -DCMAKE_EXE_LINKER_FLAGS=\"-Wl,-rpath,$out/lib" + " -lpng12 -lpano13 -lImath -lIlmImf -lIex -lHalf -lIlmThread" + - " -ljpeg -ltiff -lz -lexiv2 -lboost_thread-mt\"" + + " -ljpeg -ltiff -lz -lexiv2 -lboost_thread\"" + " -DCMAKE_SKIP_BUILD_RPATH=ON" + " -DCMAKE_BUILD_TYPE=Release" + " -DCMAKE_INSTALL_PREFIX=$out"; @@ -47,5 +47,7 @@ stdenv.mkDerivation { homepage = http://hugin.sourceforge.net/; description = "Toolkit for stitching photographs and assembling panoramas, together with an easy to use graphical front end"; license = "GPLv2+"; + maintainers = with stdenv.lib.maintainers; [viric]; + platforms = with stdenv.lib.platforms; linux; }; } -- 2.11.4.GIT