about summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorMatthew Bauer <mjbauer95@gmail.com>2018-05-25 04:22:19 -0500
committerMatthew Bauer <mjbauer95@gmail.com>2018-05-25 15:48:31 -0500
commitee8fa757f36b80a34fa97f8ee686f92abe742cf1 (patch)
treed22b7862d799954e2437d8f69f2bbecf6d00c869 /pkgs/applications
parenta0f4d19925705945b2beb393239f1a9f72b5035d (diff)
downloadnixlib-ee8fa757f36b80a34fa97f8ee686f92abe742cf1.tar
nixlib-ee8fa757f36b80a34fa97f8ee686f92abe742cf1.tar.gz
nixlib-ee8fa757f36b80a34fa97f8ee686f92abe742cf1.tar.bz2
nixlib-ee8fa757f36b80a34fa97f8ee686f92abe742cf1.tar.lz
nixlib-ee8fa757f36b80a34fa97f8ee686f92abe742cf1.tar.xz
nixlib-ee8fa757f36b80a34fa97f8ee686f92abe742cf1.tar.zst
nixlib-ee8fa757f36b80a34fa97f8ee686f92abe742cf1.zip
gimp: cleanup plugin name
All gimp plugins are now prefixed with "gimp-plugin-" to make them
more clear.
Diffstat (limited to 'pkgs/applications')
-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 5b21b349764b..0c753498af34 100644
--- a/pkgs/applications/graphics/gimp/plugins/default.nix
+++ b/pkgs/applications/graphics/gimp/plugins/default.nix
@@ -22,9 +22,8 @@ let
     '';
   }
   // a
-    # don't call this gimp-* unless you want nix replace gimp by a plugin :-)
   // {
-      name = "${a.name}-${gimp.name}-plugin";
+      name = "gimp-plugin-${a.name}";
       buildInputs = [ gimp gimp.gtk glib ] ++ (a.buildInputs or []);
       nativeBuildInputs = [ pkgconfig intltool ] ++ (a.nativeBuildInputs or []);
     }