summary refs log tree commit diff
path: root/pkgs/applications/graphics/gimp
diff options
context:
space:
mode:
authorFelix Buehler <account@buehler.rocks>2023-02-12 22:21:29 +0100
committerFelix Buehler <account@buehler.rocks>2023-02-12 22:21:44 +0100
commitdb348eb0d638ff0297411132061de10cc9ad43bf (patch)
treed382784943a5606637ea11d1f957b412784d9a5d /pkgs/applications/graphics/gimp
parent81c60e22d912ece4afe77d640f66d2092608024b (diff)
downloadnixpkgs-db348eb0d638ff0297411132061de10cc9ad43bf.tar
nixpkgs-db348eb0d638ff0297411132061de10cc9ad43bf.tar.gz
nixpkgs-db348eb0d638ff0297411132061de10cc9ad43bf.tar.bz2
nixpkgs-db348eb0d638ff0297411132061de10cc9ad43bf.tar.lz
nixpkgs-db348eb0d638ff0297411132061de10cc9ad43bf.tar.xz
nixpkgs-db348eb0d638ff0297411132061de10cc9ad43bf.tar.zst
nixpkgs-db348eb0d638ff0297411132061de10cc9ad43bf.zip
inormalize/minc-widgets/gimp-plugins: use pname & version
Diffstat (limited to 'pkgs/applications/graphics/gimp')
-rw-r--r--pkgs/applications/graphics/gimp/plugins/default.nix10
1 files changed, 7 insertions, 3 deletions
diff --git a/pkgs/applications/graphics/gimp/plugins/default.nix b/pkgs/applications/graphics/gimp/plugins/default.nix
index ae44b47643c..5f75d2770ac 100644
--- a/pkgs/applications/graphics/gimp/plugins/default.nix
+++ b/pkgs/applications/graphics/gimp/plugins/default.nix
@@ -109,7 +109,9 @@ in
     /* menu:
        Video
     */
-    name = "gap-2.6.0";
+    pname = "gap";
+    version = "2.6.0";
+
     src = fetchurl {
       url = "https://ftp.gimp.org/pub/gimp/plug-ins/v2.6/gap/gimp-gap-2.6.0.tar.bz2";
       sha256 = "1jic7ixcmsn4kx2cn32nc5087rk6g8xsrz022xy11yfmgvhzb0ql";
@@ -228,7 +230,9 @@ in
     /* menu:
       Filters/Enhance/Wavelet sharpen
     */
-    name = "wavelet-sharpen-0.1.2";
+    pname = "wavelet-sharpen";
+    version = "0.1.2";
+
     # Workaround build failure on -fno-common toolchains like upstream
     # gcc-10. Otherwise build fails as:
     #   ld: interface.o:(.bss+0xe0): multiple definition of `fimg'; plugin.o:(.bss+0x40): first defined here
@@ -271,7 +275,7 @@ in
 
   gimplensfun = pluginDerivation rec {
     version = "unstable-2018-10-21";
-    name = "gimplensfun-${version}";
+    pname = "gimplensfun";
 
     src = fetchFromGitHub {
       owner = "seebk";