Merge pull request #200053 from rodrgz/fuzzelnanosvg

fuzzel: librsvg -> nanosvg

Changed files
+10 -6
maintainers
pkgs
applications
misc
fuzzel
+6
maintainers/maintainer-list.nix
···
githubId = 852967;
name = "Russell O'Connor";
+
rodrgz = {
+
email = "rodrgz@proton.me";
+
github = "rodrgz";
+
githubId = 53882428;
+
name = "Erik Rodriguez";
+
};
roelvandijk = {
email = "roel@lambdacube.nl";
github = "roelvandijk";
+4 -6
pkgs/applications/misc/fuzzel/default.nix
···
, pngSupport ? true
# Optional dependencies
, cairo
-
, librsvg
, libpng
}:
···
tllist
fcft
] ++ lib.optional enableCairo cairo
-
++ lib.optional pngSupport libpng
-
++ lib.optional svgSupport librsvg;
+
++ lib.optional pngSupport libpng;
mesonBuildType = "release";
mesonFlags = [
"-Denable-cairo=${if enableCairo then "enabled" else "disabled"}"
"-Dpng-backend=${if pngSupport then "libpng" else "none"}"
-
"-Dsvg-backend=${if svgSupport then "librsvg" else "none"}"
+
"-Dsvg-backend=${if svgSupport then "nanosvg" else "none"}"
];
meta = with lib; {
description = "Wayland-native application launcher, similar to rofi’s drun mode";
homepage = "https://codeberg.org/dnkl/fuzzel";
-
license = licenses.mit;
-
maintainers = with maintainers; [ fionera polykernel ];
+
license = with licenses; [ mit zlib ];
+
maintainers = with maintainers; [ fionera polykernel rodrgz ];
platforms = with platforms; linux;
changelog = "https://codeberg.org/dnkl/fuzzel/releases/tag/${version}";
};