gimp: cleanup plugin name

All gimp plugins are now prefixed with "gimp-plugin-" to make them
more clear.
This commit is contained in:
Matthew Bauer 2018-05-25 04:22:19 -05:00
parent a0f4d19925
commit ee8fa757f3

View File

@ -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 []);
}