fuzzel: 1.13.1 -> 1.14.0 (#485835)

This commit is contained in:
Sandro
2026-02-08 02:04:10 +00:00
committed by GitHub
+6 -4
View File
@@ -16,9 +16,10 @@
enableCairo ? true,
pngSupport ? true,
svgSupport ? true,
svgBackend ? "nanosvg", # alternative: "librsvg"
svgBackend ? "resvg", # alternative: "librsvg", "nanosvg"
# Optional dependencies
cairo,
resvg,
libpng,
librsvg,
}:
@@ -27,13 +28,13 @@ assert (svgSupport && svgBackend == "nanosvg") -> enableCairo;
stdenv.mkDerivation (finalAttrs: {
pname = "fuzzel";
version = "1.13.1";
version = "1.14.0";
src = fetchFromCodeberg {
owner = "dnkl";
repo = "fuzzel";
rev = finalAttrs.version;
hash = "sha256-JW6MvLXax7taJfBjJjRkEKCczzO4AYsQ47akJK2pkh0=";
hash = "sha256-9O6CABh149ZtNu3sEhuycsM7pinVrBzU+rLxCAbxobs=";
};
depsBuildBuild = [
@@ -58,7 +59,8 @@ stdenv.mkDerivation (finalAttrs: {
]
++ lib.optional enableCairo cairo
++ lib.optional pngSupport libpng
++ lib.optional (svgSupport && svgBackend == "librsvg") librsvg;
++ lib.optional (svgSupport && svgBackend == "librsvg") librsvg
++ lib.optional (svgSupport && svgBackend == "resvg") resvg;
mesonBuildType = "release";