about summary refs log tree commit diff
path: root/pkgs/applications/graphics/gimp
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2014-01-01 11:51:56 +0100
committerVladimír Čunát <vcunat@gmail.com>2014-01-01 13:05:56 +0100
commit506a30418125d69b22a7e52c1d9dbe5f3bb7450c (patch)
treeb25fd41d7a336f94731a67e5e34573dfc9f9dd22 /pkgs/applications/graphics/gimp
parent9817df571523283e6915d47de9e20106c5c64a36 (diff)
downloadnixlib-506a30418125d69b22a7e52c1d9dbe5f3bb7450c.tar
nixlib-506a30418125d69b22a7e52c1d9dbe5f3bb7450c.tar.gz
nixlib-506a30418125d69b22a7e52c1d9dbe5f3bb7450c.tar.bz2
nixlib-506a30418125d69b22a7e52c1d9dbe5f3bb7450c.tar.lz
nixlib-506a30418125d69b22a7e52c1d9dbe5f3bb7450c.tar.xz
nixlib-506a30418125d69b22a7e52c1d9dbe5f3bb7450c.tar.zst
nixlib-506a30418125d69b22a7e52c1d9dbe5f3bb7450c.zip
fftw: minor update and major refactoring
- Unify the "single" and "float" variants, which are the same thing.
- Enable threads and openmp wrapper by default (they are very small).
- Don't use sse on i686, as I'm quite sure we have no warrant for that.
  Cf. http://en.wikipedia.org/wiki/Pentium_Pro
- Disable static libs (big, no indication we need them).
- I tested most builds using fftw (they build OK).
Diffstat (limited to 'pkgs/applications/graphics/gimp')
-rw-r--r--pkgs/applications/graphics/gimp/plugins/default.nix3
1 files changed, 1 insertions, 2 deletions
diff --git a/pkgs/applications/graphics/gimp/plugins/default.nix b/pkgs/applications/graphics/gimp/plugins/default.nix
index 234249e85626..d1a084761e79 100644
--- a/pkgs/applications/graphics/gimp/plugins/default.nix
+++ b/pkgs/applications/graphics/gimp/plugins/default.nix
@@ -146,10 +146,9 @@ rec {
   gmic =
   let
     imagemagick = pkgs.imagemagickBig; # maybe the non big version is enough?
-    fftw = pkgs.fftw.override {pthreads = true;};
   in pluginDerivation rec {
       name = "gmic-1.5.7.2";
-      buildInputs = [imagemagick pkgconfig fftw gimp] ++ gimp.nativeBuildInputs;
+      buildInputs = [imagemagick pkgconfig pkgs.fftw gimp] ++ gimp.nativeBuildInputs;
       src = fetchurl {
         url = mirror://sourceforge/gmic/gmic_1.5.7.2.tar.gz;
         sha256 = "1cpbxb3p2c8bcv2cbr150whapzjc7w09i3jza0z9x3xj8c0vdyv1";