3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/misc/fuzzel/default.nix

77 lines
1.5 KiB
Nix
Raw Normal View History

{ stdenv
, lib
, fetchFromGitea
, pkg-config
, meson
, ninja
, wayland-scanner
, wayland
, pixman
, wayland-protocols
, libxkbcommon
, scdoc
, tllist
, fcft
, enableCairo ? true
, enablePNG ? true
, enableSVG ? true
# Optional dependencies
, cairo
, librsvg
, libpng
}:
2020-07-06 01:10:40 +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
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
};
nativeBuildInputs = [
pkg-config
wayland-scanner
meson
ninja
scdoc
];
buildInputs = [
wayland
pixman
wayland-protocols
libxkbcommon
tllist
fcft
] ++ 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)
];
2020-07-06 01:10:40 +01:00
meta = with lib; {
description = "Wayland-native application launcher, similar to rofis drun mode";
homepage = "https://codeberg.org/dnkl/fuzzel";
license = licenses.mit;
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
};
}