mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 23:36:17 +01:00
gimpPlugins.pluginDerivation: Fix name
The name should not contain the gimp version, otherwise parseDrvName will consider it the gimp package. Fixes: https://github.com/NixOS/nixpkgs/issues/114995
This commit is contained in:
parent
3528c4151e
commit
c007fb4026
1 changed files with 1 additions and 1 deletions
|
@ -38,7 +38,7 @@ let
|
|||
}
|
||||
// attrs
|
||||
// {
|
||||
name = "${gimp.name}-plugin-${name}";
|
||||
name = "${gimp.pname}-plugin-${name}";
|
||||
buildInputs = [
|
||||
gimp
|
||||
gimp.gtk
|
||||
|
|
Loading…
Reference in a new issue