summary refs log tree commit diff
path: root/pkgs/applications/graphics/gimp
diff options
context:
space:
mode:
authorCillian de Róiste <goibhniu@fsfe.org>2013-11-10 20:16:37 +0100
committerCillian de Róiste <goibhniu@fsfe.org>2013-11-10 23:35:03 +0100
commitb8bbc87ab16882ba0eb98d4e6ac3c58a980fd1ca (patch)
tree82c770e3bc71efdaa40e5942f0d13f00df876941 /pkgs/applications/graphics/gimp
parentf5e92ce8f2a3e7116b56107635a82c532a3f9a48 (diff)
downloadnixlib-b8bbc87ab16882ba0eb98d4e6ac3c58a980fd1ca.tar
nixlib-b8bbc87ab16882ba0eb98d4e6ac3c58a980fd1ca.tar.gz
nixlib-b8bbc87ab16882ba0eb98d4e6ac3c58a980fd1ca.tar.bz2
nixlib-b8bbc87ab16882ba0eb98d4e6ac3c58a980fd1ca.tar.lz
nixlib-b8bbc87ab16882ba0eb98d4e6ac3c58a980fd1ca.tar.xz
nixlib-b8bbc87ab16882ba0eb98d4e6ac3c58a980fd1ca.tar.zst
nixlib-b8bbc87ab16882ba0eb98d4e6ac3c58a980fd1ca.zip
gimpPlugins.fourier: upgrade from 0.3.3 to 0.4.1 and fix compilation
Diffstat (limited to 'pkgs/applications/graphics/gimp')
-rw-r--r--pkgs/applications/graphics/gimp/plugins/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/applications/graphics/gimp/plugins/default.nix b/pkgs/applications/graphics/gimp/plugins/default.nix
index e8a809d11437..ef9060d00c3e 100644
--- a/pkgs/applications/graphics/gimp/plugins/default.nix
+++ b/pkgs/applications/graphics/gimp/plugins/default.nix
@@ -68,18 +68,18 @@ rec {
     };
   };
 
-  fourier = pluginDerivation {
+  fourier = pluginDerivation rec {
     /* menu:
        Filters/Generic/FFT Forward
        Filters/Generic/FFT Inverse
     */
-    name = "fourier-0.3.3";
-    buildInputs = [ gimp pkgs.fftwSinglePrec  pkgconfig glib] ++ gimp.nativeBuildInputs;
+    name = "fourier-0.4.1";
+    buildInputs = [ gimp pkgs.fftw  pkgconfig glib] ++ gimp.nativeBuildInputs;
     postInstall = "fail";
     installPhase = "installPlugins fourier";
     src = fetchurl {
-      url = http://people.via.ecp.fr/~remi/soft/gimp/fourier-0.3.3.tar.gz;
-      sha256 = "0xxgp0lrjxsj54sgygi31c7q41jkqzn0v18qyznrviv8r099v29p";
+      url = "http://registry.gimp.org/files/${name}.tar.gz";
+      sha256 = "1pr3y3zl9w8xs1circdrxpr98myz9m8wfzy022al79z4pdanwvs1";
     };
   };