gimpPlugins.fourier: upgrade from 0.3.3 to 0.4.1 and fix compilation

This commit is contained in:
Cillian de Róiste 2013-11-10 20:16:37 +01:00
parent f5e92ce8f2
commit b8bbc87ab1
1 changed files with 5 additions and 5 deletions

View File

@ -68,18 +68,18 @@ rec {
}; };
}; };
fourier = pluginDerivation { fourier = pluginDerivation rec {
/* menu: /* menu:
Filters/Generic/FFT Forward Filters/Generic/FFT Forward
Filters/Generic/FFT Inverse Filters/Generic/FFT Inverse
*/ */
name = "fourier-0.3.3"; name = "fourier-0.4.1";
buildInputs = [ gimp pkgs.fftwSinglePrec pkgconfig glib] ++ gimp.nativeBuildInputs; buildInputs = [ gimp pkgs.fftw pkgconfig glib] ++ gimp.nativeBuildInputs;
postInstall = "fail"; postInstall = "fail";
installPhase = "installPlugins fourier"; installPhase = "installPlugins fourier";
src = fetchurl { src = fetchurl {
url = http://people.via.ecp.fr/~remi/soft/gimp/fourier-0.3.3.tar.gz; url = "http://registry.gimp.org/files/${name}.tar.gz";
sha256 = "0xxgp0lrjxsj54sgygi31c7q41jkqzn0v18qyznrviv8r099v29p"; sha256 = "1pr3y3zl9w8xs1circdrxpr98myz9m8wfzy022al79z4pdanwvs1";
}; };
}; };