2021-08-07 20:40:56 +02:00
|
|
|
|
{ stdenv
|
|
|
|
|
, lib
|
|
|
|
|
, fetchFromGitea
|
|
|
|
|
, pkg-config
|
|
|
|
|
, meson
|
|
|
|
|
, ninja
|
2021-08-07 20:50:59 +02:00
|
|
|
|
, wayland-scanner
|
2021-08-07 20:40:56 +02:00
|
|
|
|
, wayland
|
|
|
|
|
, pixman
|
|
|
|
|
, wayland-protocols
|
|
|
|
|
, libxkbcommon
|
|
|
|
|
, scdoc
|
|
|
|
|
, tllist
|
|
|
|
|
, fcft
|
2021-08-07 20:50:59 +02:00
|
|
|
|
, enableCairo ? true
|
2021-10-16 06:10:26 +02:00
|
|
|
|
, withPNGBackend ? "libpng"
|
|
|
|
|
, withSVGBackend ? "librsvg"
|
2021-11-14 20:17:37 +01:00
|
|
|
|
# Optional dependencies
|
2021-08-07 20:50:59 +02:00
|
|
|
|
, cairo
|
|
|
|
|
, librsvg
|
|
|
|
|
, libpng
|
2021-08-07 20:40:56 +02:00
|
|
|
|
}:
|
2020-07-06 02:10:40 +02:00
|
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
|
pname = "fuzzel";
|
2021-11-14 20:17:37 +01:00
|
|
|
|
version = "1.6.5";
|
2020-07-06 02:10:40 +02:00
|
|
|
|
|
2021-08-07 20:38:31 +02:00
|
|
|
|
src = fetchFromGitea {
|
|
|
|
|
domain = "codeberg.org";
|
|
|
|
|
owner = "dnkl";
|
|
|
|
|
repo = "fuzzel";
|
|
|
|
|
rev = version;
|
2021-11-14 20:17:37 +01:00
|
|
|
|
sha256 = "SWt46YSXI6Dsv0ed3H4sN8kbEzQDL4U6jxFSbMyspJ0=";
|
2020-07-06 02:10:40 +02:00
|
|
|
|
};
|
|
|
|
|
|
2021-08-07 20:40:56 +02:00
|
|
|
|
nativeBuildInputs = [
|
|
|
|
|
pkg-config
|
2021-08-07 20:50:59 +02:00
|
|
|
|
wayland-scanner
|
2021-08-07 20:40:56 +02:00
|
|
|
|
meson
|
|
|
|
|
ninja
|
|
|
|
|
scdoc
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
|
wayland
|
|
|
|
|
pixman
|
|
|
|
|
wayland-protocols
|
|
|
|
|
libxkbcommon
|
|
|
|
|
tllist
|
|
|
|
|
fcft
|
2021-08-07 20:50:59 +02:00
|
|
|
|
] ++ lib.optional enableCairo cairo
|
2021-11-14 20:17:37 +01:00
|
|
|
|
++ lib.optional (withPNGBackend == "libpng") libpng
|
|
|
|
|
++ lib.optional (withSVGBackend == "librsvg") librsvg;
|
2021-08-07 20:50:59 +02:00
|
|
|
|
|
|
|
|
|
mesonBuildType = "release";
|
|
|
|
|
|
|
|
|
|
mesonFlags = [
|
2021-10-16 06:10:26 +02:00
|
|
|
|
"-Denable-cairo=${if enableCairo then "enabled" else "disabled"}"
|
|
|
|
|
"-Dpng-backend=${withPNGBackend}"
|
|
|
|
|
"-Dsvg-backend=${withSVGBackend}"
|
2021-08-07 20:40:56 +02:00
|
|
|
|
];
|
2020-07-06 02:10:40 +02:00
|
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
|
description = "Wayland-native application launcher, similar to rofi’s drun mode";
|
|
|
|
|
homepage = "https://codeberg.org/dnkl/fuzzel";
|
|
|
|
|
license = licenses.mit;
|
2021-08-07 21:22:07 +02:00
|
|
|
|
maintainers = with maintainers; [ fionera polykernel ];
|
2020-07-06 02:10:40 +02:00
|
|
|
|
platforms = with platforms; linux;
|
2020-09-19 12:48:24 +02:00
|
|
|
|
changelog = "https://codeberg.org/dnkl/fuzzel/releases/tag/${version}";
|
2020-07-06 02:10:40 +02:00
|
|
|
|
};
|
|
|
|
|
}
|