gimp-with-plugins: list plugins in description (#443772)

This commit is contained in:
Michael Daniels
2026-05-30 00:15:59 +00:00
committed by GitHub
2 changed files with 10 additions and 2 deletions
@@ -369,7 +369,8 @@ lib.makeScope pkgs.newScope (
# =============== simple script files ====================
lightning = scriptDerivation {
name = "Lightning";
pname = "Lightning";
version = "0-unstable-2017-08-25";
src = fetchurl {
url = "https://github.com/pixlsus/registry.gimp.org_static/raw/master/registry.gimp.org/files/Lightning.scm";
sha256 = "c14a8f4f709695ede3f77348728a25b3f3ded420da60f3f8de3944b7eae98a49";
+8 -1
View File
@@ -51,5 +51,12 @@ symlinkJoin {
ln -s ${gimp.man} $man
'';
inherit (gimp) meta;
meta = gimp.meta // {
description = "${gimp.meta.description} with plugins";
longDescription = ''
Plugins:
${lib.concatMapStringsSep "\n" (p: "- ${p.pname}") selectedPlugins}
'';
};
}