mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 17:33:09 +00:00
72dc88a9aa
The '-Wno-error=comment' cflag was introduced ine01c412052
as a workaround for the librsvg build regression[1] when '-Werror' is used. The issue has been fixed since release v2.54.1[2]. [1] - https://gitlab.gnome.org/GNOME/librsvg/-/issues/856 [2] -39a6d3418c
74 lines
1.5 KiB
Nix
74 lines
1.5 KiB
Nix
{ stdenv
|
||
, lib
|
||
, fetchFromGitea
|
||
, pkg-config
|
||
, meson
|
||
, ninja
|
||
, wayland-scanner
|
||
, wayland
|
||
, pixman
|
||
, wayland-protocols
|
||
, libxkbcommon
|
||
, scdoc
|
||
, tllist
|
||
, fcft
|
||
, enableCairo ? true
|
||
, svgSupport ? true
|
||
, pngSupport ? true
|
||
# Optional dependencies
|
||
, cairo
|
||
, librsvg
|
||
, libpng
|
||
}:
|
||
|
||
assert svgSupport -> enableCairo;
|
||
|
||
stdenv.mkDerivation rec {
|
||
pname = "fuzzel";
|
||
version = "1.7.0";
|
||
|
||
src = fetchFromGitea {
|
||
domain = "codeberg.org";
|
||
owner = "dnkl";
|
||
repo = "fuzzel";
|
||
rev = version;
|
||
sha256 = "1261gwxiky37pvzmmbrpml1psa22kkglb141ybj1fbnwg6j7jvlf";
|
||
};
|
||
|
||
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 librsvg;
|
||
|
||
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"}"
|
||
];
|
||
|
||
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 ];
|
||
platforms = with platforms; linux;
|
||
changelog = "https://codeberg.org/dnkl/fuzzel/releases/tag/${version}";
|
||
};
|
||
}
|