2021-08-07 19:40:56 +01:00
|
|
|
|
{ stdenv
|
|
|
|
|
, lib
|
|
|
|
|
, fetchFromGitea
|
|
|
|
|
, pkg-config
|
|
|
|
|
, meson
|
|
|
|
|
, ninja
|
2021-08-07 19:50:59 +01:00
|
|
|
|
, wayland-scanner
|
2021-08-07 19:40:56 +01:00
|
|
|
|
, wayland
|
|
|
|
|
, pixman
|
|
|
|
|
, wayland-protocols
|
|
|
|
|
, libxkbcommon
|
|
|
|
|
, scdoc
|
|
|
|
|
, tllist
|
|
|
|
|
, fcft
|
2021-08-07 19:50:59 +01:00
|
|
|
|
, enableCairo ? true
|
|
|
|
|
, enablePNG ? true
|
|
|
|
|
, enableSVG ? true
|
|
|
|
|
# Optional dependencies
|
|
|
|
|
, cairo
|
|
|
|
|
, librsvg
|
|
|
|
|
, libpng
|
2021-08-07 19:40:56 +01:00
|
|
|
|
}:
|
2020-07-06 01:10:40 +01:00
|
|
|
|
|
2021-08-07 19:50:59 +01:00
|
|
|
|
let
|
|
|
|
|
# Courtesy of sternenseemann and FRidh, commit c9a7fdfcfb420be8e0179214d0d91a34f5974c54
|
|
|
|
|
mesonFeatureFlag = opt: b: "-D${opt}=${if b then "enabled" else "disabled"}";
|
|
|
|
|
in
|
|
|
|
|
|
2020-07-06 01:10:40 +01:00
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
|
pname = "fuzzel";
|
2021-07-08 14:35:31 +01:00
|
|
|
|
version = "1.6.1";
|
2020-07-06 01:10:40 +01:00
|
|
|
|
|
2021-08-07 19:38:31 +01:00
|
|
|
|
src = fetchFromGitea {
|
|
|
|
|
domain = "codeberg.org";
|
|
|
|
|
owner = "dnkl";
|
|
|
|
|
repo = "fuzzel";
|
|
|
|
|
rev = version;
|
2021-07-08 14:35:31 +01:00
|
|
|
|
sha256 = "sha256-JW5sAlTprSRIdFbmSaUreGtNccERgQMGEW+WCSscYQk=";
|
2020-07-06 01:10:40 +01:00
|
|
|
|
};
|
|
|
|
|
|
2021-08-07 19:40:56 +01:00
|
|
|
|
nativeBuildInputs = [
|
|
|
|
|
pkg-config
|
2021-08-07 19:50:59 +01:00
|
|
|
|
wayland-scanner
|
2021-08-07 19:40:56 +01:00
|
|
|
|
meson
|
|
|
|
|
ninja
|
|
|
|
|
scdoc
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
|
wayland
|
|
|
|
|
pixman
|
|
|
|
|
wayland-protocols
|
|
|
|
|
libxkbcommon
|
|
|
|
|
tllist
|
|
|
|
|
fcft
|
2021-08-07 19:50:59 +01:00
|
|
|
|
] ++ lib.optional enableCairo cairo
|
|
|
|
|
++ lib.optional enablePNG libpng
|
|
|
|
|
++ lib.optional enableSVG librsvg;
|
|
|
|
|
|
|
|
|
|
mesonBuildType = "release";
|
|
|
|
|
|
|
|
|
|
mesonFlags = [
|
|
|
|
|
(mesonFeatureFlag "enable-cairo" enableCairo)
|
|
|
|
|
(mesonFeatureFlag "enable-png" enablePNG)
|
|
|
|
|
(mesonFeatureFlag "enable-svg" enableSVG)
|
2021-08-07 19:40:56 +01:00
|
|
|
|
];
|
2020-07-06 01:10:40 +01: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 20:22:07 +01:00
|
|
|
|
maintainers = with maintainers; [ fionera polykernel ];
|
2020-07-06 01:10:40 +01:00
|
|
|
|
platforms = with platforms; linux;
|
2020-09-19 11:48:24 +01:00
|
|
|
|
changelog = "https://codeberg.org/dnkl/fuzzel/releases/tag/${version}";
|
2020-07-06 01:10:40 +01:00
|
|
|
|
};
|
|
|
|
|
}
|