push sheeet
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s

This commit is contained in:
Dark Steveneq
2025-10-09 14:15:47 +02:00
commit 646b892680
49168 changed files with 5897842 additions and 0 deletions

View File

@@ -0,0 +1,87 @@
{
stdenv,
lib,
fetchFromGitea,
pkg-config,
meson,
ninja,
wayland-scanner,
wayland,
pixman,
wayland-protocols,
libxkbcommon,
scdoc,
tllist,
fcft,
enableCairo ? true,
pngSupport ? true,
svgSupport ? true,
svgBackend ? "nanosvg", # alternative: "librsvg"
# Optional dependencies
cairo,
libpng,
librsvg,
}:
assert (svgSupport && svgBackend == "nanosvg") -> enableCairo;
stdenv.mkDerivation (finalAttrs: {
pname = "fuzzel";
version = "1.13.1";
src = fetchFromGitea {
domain = "codeberg.org";
owner = "dnkl";
repo = "fuzzel";
rev = finalAttrs.version;
hash = "sha256-JW6MvLXax7taJfBjJjRkEKCczzO4AYsQ47akJK2pkh0=";
};
depsBuildBuild = [
pkg-config
];
nativeBuildInputs = [
pkg-config
wayland-scanner
meson
ninja
scdoc
];
buildInputs = [
wayland
pixman
wayland-protocols
libxkbcommon
tllist
fcft
]
++ lib.optional enableCairo cairo
++ lib.optional pngSupport libpng
++ lib.optional (svgSupport && svgBackend == "librsvg") librsvg;
mesonBuildType = "release";
mesonFlags = [
(lib.mesonEnable "enable-cairo" enableCairo)
(lib.mesonOption "png-backend" (if pngSupport then "libpng" else "none"))
(lib.mesonOption "svg-backend" (if svgSupport then svgBackend else "none"))
];
meta = with lib; {
changelog = "https://codeberg.org/dnkl/fuzzel/releases/tag/${finalAttrs.version}";
description = "Wayland-native application launcher, similar to rofis drun mode";
homepage = "https://codeberg.org/dnkl/fuzzel";
license = with licenses; [
mit
zlib
];
mainProgram = "fuzzel";
maintainers = with maintainers; [
fionera
rodrgz
];
platforms = with platforms; linux;
};
})